diff --git a/elastic_recheck/config.py b/elastic_recheck/config.py index 377f0fd6..baff1fec 100644 --- a/elastic_recheck/config.py +++ b/elastic_recheck/config.py @@ -50,9 +50,11 @@ INCLUDED_PROJECTS_REGEX = "(^openstack/|devstack|grenade)" # TODO(dmsimard): Revisit this query once Zuul v2 is no longer supported # Let's value legibility over pep8 line width here... ALL_FAILS_QUERY = ( - '(filename:"job-output.txt" AND message:"POST-RUN END" AND message:"project-config/playbooks/base/post-ssh")' # flake8: noqa + '(' + '(filename:"job-output.txt" AND message:"POST-RUN END" AND message:"project-config/playbooks/base/post-ssh.yaml")' # flake8: noqa ' OR ' '(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_queue:"gate"' ' AND voting:"1"'