From 1ad85fd04a2268a660fbf35068e730dda917d137 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Fri, 17 Mar 2017 16:53:57 -0400 Subject: Bug 1307485 - Add code to run a subset of buglist.cgi search queries against the ES backend This not the cause of test failures, so should live on in master now. --- Bugzilla.pm | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Bugzilla.pm') diff --git a/Bugzilla.pm b/Bugzilla.pm index bd410364e..ecaca9151 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -23,6 +23,7 @@ BEGIN { use Bugzilla::Auth; use Bugzilla::Auth::Persist::Cookie; use Bugzilla::CGI; +use Bugzilla::Elastic; use Bugzilla::Config; use Bugzilla::Constants; use Bugzilla::DB; @@ -786,6 +787,11 @@ sub memcached { } } +sub elastic { + my ($class) = @_; + $class->process_cache->{elastic} //= Bugzilla::Elastic->new(); +} + # Private methods # Per-process cleanup. Note that this is a plain subroutine, not a method, -- cgit v1.2.3-24-g4f1b