@@ -, +, @@ about.pl settings --- about.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/about.pl +++ a/about.pl @@ -391,7 +391,7 @@ if ( C4::Context->preference('SearchEngine') eq 'Elasticsearch' ) { # TODO: When new indexes get added, we could have other ways to # fetch the list of available indexes (e.g. plugins, etc) $es_status->{nodes} = $es_conf->{nodes}; - my $es = Search::Elasticsearch->new({ nodes => $es_conf->{nodes} }); + my $es = Search::Elasticsearch->new( $es_conf ); my $es_status->{version} = $es->info->{version}->{number}; foreach my $index ( @indexes ) { --