From 0b4bce976999a2eb1575fa4d5476d88293654e4f Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 7 Sep 2016 12:03:00 +0100 Subject: [PATCH] Bug 17189: Use Koha::Caches instead of Koha::Cache in Koha::MetaSearcher --- Koha/MetaSearcher.pm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Koha/MetaSearcher.pm b/Koha/MetaSearcher.pm index e38b15d..ce5add4 100644 --- a/Koha/MetaSearcher.pm +++ b/Koha/MetaSearcher.pm @@ -25,7 +25,7 @@ use C4::Charset qw( MarcToUTF8Record ); use C4::Search qw(); # Purely for new_record_from_zebra use DBIx::Class::ResultClass::HashRefInflator; use IO::Select; -use Koha::Cache; +use Koha::Caches; use Koha::Database; use Koha::MetadataRecord; use MARC::File::XML; @@ -91,8 +91,7 @@ sub search { my $resultset_expiry = 300; - my $cache; - eval { $cache = Koha::Cache->new(); }; + my $cache = Koha::Caches->get_instance(); my $schema = Koha::Database->new->schema; my $stats = { num_fetched => { -- 2.8.1