From 07e4bf7a7a2134fbec408ca30da4b5da7e1eddb7 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 15 Sep 2026 18:04:11 +0800 Subject: [PATCH] =?UTF-8?q?obs(bid=5Fflow):=20=E5=AF=B9=E8=B4=A6=E5=99=A8?= =?UTF-8?q?=E6=97=A5=E5=BF=97=E8=BE=93=E5=87=BAwaiting=E5=89=8D=E7=BC=80?= =?UTF-8?q?=E2=80=94=E2=80=94=E6=8B=86=E8=A7=A3=E9=97=A8=E7=A6=81'?= =?UTF-8?q?=E7=BB=B4=E5=BA=A6=E5=9C=A8=E5=8A=9E=E6=9A=82=E7=BC=93QC'?= =?UTF-8?q?=E7=AD=89=E5=90=88=E6=B3=95=E7=AD=89=E5=BE=85=E6=80=81=E5=8F=AF?= =?UTF-8?q?=E8=A7=81,=E5=90=A6=E5=88=99=E9=97=A8=E7=A6=81=E7=94=9F?= =?UTF-8?q?=E6=95=88=E4=BD=86=E6=97=A5=E5=BF=97=E6=97=A0=E7=97=95=E6=98=93?= =?UTF-8?q?=E8=AF=AF=E5=88=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pipeline_bidding/bid_flow.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pipeline_bidding/bid_flow.py b/pipeline_bidding/bid_flow.py index 79d3210..8b067c4 100644 --- a/pipeline_bidding/bid_flow.py +++ b/pipeline_bidding/bid_flow.py @@ -1650,7 +1650,10 @@ def start_poller(): POLLER_STATE["last_error"] = "" for pid, acts in (res or {}).items(): for a in acts: - if a.startswith(("created", "escalated", "completed", "error", "trimmed")): + # waiting 也输出(2026-09-15):拆解门禁「维度在办暂缓 QC」 + # 等合法等待态是可观测性关键,不输出会误判门禁没生效。 + if a.startswith(("created", "escalated", "completed", + "error", "trimmed", "waiting")): try: from appPublic.log import debug as _dbg _dbg("bid_flow %s: %s" % (pid, a))