Add status string from zuul launcher to uncategorized query

This commit adds the output from zuul launcher for job status to the
query we use for finding failures.

Change-Id: I6c12c247c1b65fd10d2c6ecd98cc3e26bbe6d124
This commit is contained in:
Matthew Treinish 2016-06-29 18:36:26 -04:00
parent 9ca3ab62a3
commit 2b7e824bc8
No known key found for this signature in database
GPG Key ID: FD12A0F214C9E177
1 changed files with 2 additions and 1 deletions

View File

@ -83,7 +83,8 @@ def all_fails(classifier):
"""
all_fails = {}
query = ('filename:"console.html" '
'AND message:"Finished: FAILURE" '
'AND (message:"Finished: FAILURE" '
'OR message:"[Zuul] Job complete, result: FAILURE") '
'AND build_queue:"gate" '
'AND voting:"1"')
results = classifier.hits_by_query(query, size=30000)