View | Details | Raw Unified | Return to bug 32339
Collapse All | Expand All

(-)a/C4/Biblio.pm (-1 / +1 lines)
Lines 2778-2784 sub ModBiblioMarc { Link Here
2778
2778
2779
    unless ( $skip_record_index ) {
2779
    unless ( $skip_record_index ) {
2780
        my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX });
2780
        my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX });
2781
        $indexer->index_records( $biblionumber, "specialUpdate", "biblioserver" );
2781
        $indexer->index_records( $biblionumber, "specialUpdate", "biblioserver", $record );
2782
    }
2782
    }
2783
2783
2784
    return $biblionumber;
2784
    return $biblionumber;
(-)a/Koha/SearchEngine/Elasticsearch/Indexer.pm (-3 / +1 lines)
Lines 308-315 sub update_index_background { Link Here
308
This function takes an array of record numbers and fetches the records to send to update_index
308
This function takes an array of record numbers and fetches the records to send to update_index
309
for actual indexing.
309
for actual indexing.
310
310
311
If $records parameter is provided the records will be used as-is, this is only utilized for authorities
311
If $records parameter is provided the records will be used as-is.
312
at the moment.
313
312
314
The other variables are used for parity with Zebra indexing calls. Currently the calls are passed through
313
The other variables are used for parity with Zebra indexing calls. Currently the calls are passed through
315
to Zebra as well.
314
to Zebra as well.
316
- 

Return to bug 32339