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

(-)a/misc/workers/es_indexer_daemon.pl (-2 / +1 lines)
Lines 240-246 sub commit { Link Here
240
}
240
}
241
241
242
sub process_outstanding {
242
sub process_outstanding {
243
    my $jobs = Koha::BackgroundJobs->search({ status => 'new', queue => 'elastic_index' });
243
    my $jobs = Koha::BackgroundJobs->search({ status => 'new', type => 'update_elastic_index' });
244
    while ( my $job = $jobs->next ) {
244
    while ( my $job = $jobs->next ) {
245
        commit($job);
245
        commit($job);
246
    }
246
    }
247
- 

Return to bug 36484