From 5ebf4c01ee0b70341efb7103e27787e32e78c1e7 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 29 Apr 2022 12:10:42 -0300 Subject: [PATCH] Bug 30464: (QA follow-up) Enqueue indexing Signed-off-by: Tomas Cohen Arazi --- Koha/BackgroundJob/BatchUpdateAuthority.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/BackgroundJob/BatchUpdateAuthority.pm b/Koha/BackgroundJob/BatchUpdateAuthority.pm index 6845a2d6cf..ca23f7cf86 100644 --- a/Koha/BackgroundJob/BatchUpdateAuthority.pm +++ b/Koha/BackgroundJob/BatchUpdateAuthority.pm @@ -104,7 +104,7 @@ sub process { } my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::AUTHORITIES_INDEX }); - $indexer->index_records( \@record_ids, "specialUpdate", "authorityserver", undef, { index_now => 1 } ); + $indexer->index_records( \@record_ids, "specialUpdate", "authorityserver" ); my $job_data = decode_json $self->data; $job_data->{messages} = \@messages; -- 2.34.1