@@ -, +, @@ --- Koha/Exceptions/Elasticsearch.pm | 2 +- Koha/SearchEngine/Elasticsearch/Indexer.pm | 6 ++---- misc/search_tools/rebuild_elasticsearch.pl | 6 ++---- 3 files changed, 5 insertions(+), 9 deletions(-) --- a/Koha/Exceptions/Elasticsearch.pm +++ a/Koha/Exceptions/Elasticsearch.pm @@ -25,7 +25,7 @@ use Exception::Class ( 'Koha::Exceptions::Elasticsearch::BadResponse' => { isa => 'Koha::Exceptions::Elasticsearch', description => 'Bad response received when submitting request to Elasticsearch', - fields => [ 'error', 'details' ] + fields => [ 'type', 'details' ] }, 'Koha::Exceptions::Elasticsearch::MARCFieldExprParseError' => { isa => 'Koha::Exceptions::Elasticsearch', --- a/Koha/SearchEngine/Elasticsearch/Indexer.pm +++ a/Koha/SearchEngine/Elasticsearch/Indexer.pm @@ -125,12 +125,10 @@ sub update_index { carp "One or more ElasticSearch errors occurred when indexing documents"; } } catch { - if( ref $_ eq 'Search::Elasticsearch::Error::Timeout' ){ Koha::Exceptions::Elasticsearch::BadResponse->throw( - error => "Record commit failed.", - details => "Timeout", + type => $_->{type}, + details => $_->{text}, ); - } }; } return $response; --- a/misc/search_tools/rebuild_elasticsearch.pl +++ a/misc/search_tools/rebuild_elasticsearch.pl @@ -309,10 +309,8 @@ sub _do_reindex { _handle_response($response); _log( 1, "Commit complete\n" ); } catch { - if( ref $_ eq 'Koha::Exceptions::Elasticsearch::BadResponse'){ - _log(1,$_->{error}); - _log(2,$_->{details}); - } + _log(1,"Elasticsearch exception thrown: ".$_->type."\n"); + _log(2,"Details: ".$_->details."\n"); }; $commit_count = $commit; @id_buffer = (); --