From 543843f0a81801977960a6ba22c89e648d3b803b Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Tue, 22 Jul 2014 12:02:08 -0700 Subject: [PATCH] Narrow query 1311778 to only hit the gate queue Bad code, can also cause this fingerprint to trigger. So narrow this query to the gate queue only where we assume the code is good (it must have passed the unit tests once before). We commonly restrict unit test queries for this reason, for example: If8c6f4e3651ba7f081e9c12193dce1e7db2fbfef Change-Id: I824bc9ac73a7e9aa38e294f7d2695ed35947d808 Related-Bug: 1311778 --- queries/1311778.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/queries/1311778.yaml b/queries/1311778.yaml index 05485716..97d96c12 100644 --- a/queries/1311778.yaml +++ b/queries/1311778.yaml @@ -1,4 +1,5 @@ query: > message:"MessagingTimeout: No reply on topic" AND tags:console AND - (build_name:"gate-nova-python27" OR build_name:"gate-nova-python26") + (build_name:"gate-nova-python27" OR build_name:"gate-nova-python26") AND + build_queue:"gate"