From: Bill Erickson Date: Thu, 12 Sep 2019 17:41:58 +0000 (-0400) Subject: fix deprecated imports / uses X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=276cee01fb5ce02cff2beb8beb6cd01540183f4e;p=working%2FEvergreen.git fix deprecated imports / uses Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/support-scripts/test-scripts/elastic-search-samples.pl b/Open-ILS/src/support-scripts/test-scripts/elastic-search-samples.pl index 6eb3501b52..fbb182d7dd 100755 --- a/Open-ILS/src/support-scripts/test-scripts/elastic-search-samples.pl +++ b/Open-ILS/src/support-scripts/test-scripts/elastic-search-samples.pl @@ -5,7 +5,7 @@ use Getopt::Long; use Time::HiRes qw/time/; use OpenSRF::Utils::JSON; use OpenILS::Utils::Fieldmapper; -use OpenILS::Elastic::BibSearch; +use OpenILS::Elastic::Bib::Search; use utf8; binmode(STDIN, ':utf8'); @@ -117,7 +117,7 @@ Fieldmapper->import( IDL => OpenSRF::Utils::SettingsClient->new->config_value("IDL")); OpenILS::Utils::CStoreEditor::init(); -my $es = OpenILS::Elastic::BibSearch->new($cluster); +my $es = OpenILS::Elastic::Bib::Search->new($cluster); $es->connect; print "Searching...\n"; diff --git a/Open-ILS/src/support-scripts/test-scripts/elastic-search.pl b/Open-ILS/src/support-scripts/test-scripts/elastic-search.pl index 810167eda1..becf508c6d 100755 --- a/Open-ILS/src/support-scripts/test-scripts/elastic-search.pl +++ b/Open-ILS/src/support-scripts/test-scripts/elastic-search.pl @@ -5,7 +5,7 @@ use Getopt::Long; use Time::HiRes qw/time/; use OpenSRF::Utils::JSON; use OpenILS::Utils::Fieldmapper; -use OpenILS::Elastic::BibSearch; +use OpenILS::Elastic::Bib::Search; use utf8; binmode(STDIN, ':utf8'); @@ -46,7 +46,7 @@ Fieldmapper->import( IDL => OpenSRF::Utils::SettingsClient->new->config_value("IDL")); OpenILS::Utils::CStoreEditor::init(); -my $es = OpenILS::Elastic::BibSearch->new($cluster); +my $es = OpenILS::Elastic::Bib::Search->new($cluster); $es->connect; print <