|
Lines 221-226
sub commit {
Link Here
|
| 221 |
$auth_indexer->update_index( \@auth_chunk ); |
221 |
$auth_indexer->update_index( \@auth_chunk ); |
| 222 |
} catch { |
222 |
} catch { |
| 223 |
$logger->warn( sprintf "Update of elastic index failed with: %s", $_ ); |
223 |
$logger->warn( sprintf "Update of elastic index failed with: %s", $_ ); |
|
|
224 |
$auth_indexer->update_index_background( \@auth_chunk, 'authorityserver' ); |
| 224 |
}; |
225 |
}; |
| 225 |
} |
226 |
} |
| 226 |
} |
227 |
} |
|
Lines 231-236
sub commit {
Link Here
|
| 231 |
$biblio_indexer->update_index( \@bib_chunk ); |
232 |
$biblio_indexer->update_index( \@bib_chunk ); |
| 232 |
} catch { |
233 |
} catch { |
| 233 |
$logger->warn( sprintf "Update of elastic index failed with: %s", $_ ); |
234 |
$logger->warn( sprintf "Update of elastic index failed with: %s", $_ ); |
|
|
235 |
$biblio_indexer->update_index_background( \@bib_chunk, 'biblioserver' ); |
| 234 |
}; |
236 |
}; |
| 235 |
} |
237 |
} |
| 236 |
} |
238 |
} |
| 237 |
- |
|
|