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

(-)a/Koha/SearchEngine/Elasticsearch/Search.pm (-2 / +2 lines)
Lines 214-220 sub search_auth_compat { Link Here
214
    my $schema   = $database->schema();
214
    my $schema   = $database->schema();
215
    my $res      = $self->search($query, undef, $count, %options);
215
    my $res      = $self->search($query, undef, $count, %options);
216
216
217
    my $bib_searcher = Koha::SearchEngine::Elasticsearch::Search->new({index => 'biblios'});
217
    # Use state variables to avoid recreating the objects every time.
218
    state $bib_searcher = Koha::SearchEngine::Elasticsearch::Search->new({index => 'biblios'});
218
    my @records;
219
    my @records;
219
    my $hits = $res->{'hits'};
220
    my $hits = $res->{'hits'};
220
    foreach my $es_record (@{$hits->{'hits'}}) {
221
    foreach my $es_record (@{$hits->{'hits'}}) {
221
- 

Return to bug 39076