summaryrefslogtreecommitdiffstats
path: root/scripts/search.pl
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2017-03-21 04:08:26 +0100
committerDylan William Hardison <dylan@hardison.net>2017-03-21 04:08:26 +0100
commitb921e3142e37977298571a4229faca4e1794017d (patch)
treec965352b0db57f0d73f12ba2fd818845566dbe8b /scripts/search.pl
parente53de8c34e12e18ecea98ad97775893f083beff7 (diff)
downloadbugzilla-b921e3142e37977298571a4229faca4e1794017d.tar.gz
bugzilla-b921e3142e37977298571a4229faca4e1794017d.tar.xz
Bug 1307485 - Add code to run a subset of buglist.cgi search queries against the ES backend
Skipping this for this week's push.
Diffstat (limited to 'scripts/search.pl')
-rw-r--r--scripts/search.pl13
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/search.pl b/scripts/search.pl
deleted file mode 100644
index 6e0f7245d..000000000
--- a/scripts/search.pl
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/perl
-use strict;
-use warnings;
-use Bugzilla;
-use JSON '-convert_blessed_universally';
-
-print JSON->new->pretty->encode(
- Bugzilla::Elastic::Search->new(
- quicksearch => "@ARGV",
- fields => ['bug_id', 'short_desc'],
- order => ['bug_id'],
- )->es_query
-);