From f8e0d5a0471f76cb09cba0d6d67ce529e7f20516 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Thu, 12 Sep 2019 13:41:58 -0400 Subject: [PATCH] fix deprecated imports / uses Signed-off-by: Bill Erickson --- Open-ILS/src/support-scripts/test-scripts/elastic-search-samples.pl | 4 ++-- Open-ILS/src/support-scripts/test-scripts/elastic-search.pl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 <