Fix parens matching in result ready query

There was a missing closing paren (we were short one).

Change-Id: Icb87aaa7509fd1fc3b595d20ef2ba29d4456317a
This commit is contained in:
Clark Boylan 2018-05-08 14:24:43 -07:00
parent 88fd897ed8
commit 610841f9a3
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ def result_ready(change, patchset, name, short_uuid):
query = (
'((filename:"job-output.txt" AND message:"POST-RUN END" AND message:"project-config/playbooks/base/post-ssh")' # flake8: noqa
' OR '
'(filename:"console.html" AND (message:"[Zuul] Job complete" OR message:"[SCP] Copying console log" OR message:"Grabbing consoleLog"))' # flake8: noqa
'(filename:"console.html" AND (message:"[Zuul] Job complete" OR message:"[SCP] Copying console log" OR message:"Grabbing consoleLog")))' # flake8: noqa
' AND build_status:"FAILURE"'
' AND build_change:"{change}"'
' AND build_patchset:"{patchset}"'