Fix elasticsearch URL for gate queue

Add space before the AND so the query works when you follow the link to
elasticsearch

Change-Id: I4b05f8c7e3c01c542e664c336e9d7773c7542616
This commit is contained in:
Joe Gordon 2014-03-20 10:28:40 -07:00
parent 053780f7bc
commit a2261e440f
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ def main():
for query in classifier.queries:
if args.queue:
query['query'] = query['query'] + ('AND build_queue:"%s"' %
query['query'] = query['query'] + (' AND build_queue:"%s"' %
args.queue)
if query.get('suppress-graph'):
continue