From 02187a02ac0a14d3288e1ccb717bb1272806da74 Mon Sep 17 00:00:00 2001 From: cfdaily Date: Sun, 17 May 2026 21:51:58 +0800 Subject: [PATCH] auto-sync: 2026-05-17 21:51:58 --- src/daemon/ticker.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/daemon/ticker.py b/src/daemon/ticker.py index c9b44b2..46908a8 100644 --- a/src/daemon/ticker.py +++ b/src/daemon/ticker.py @@ -364,6 +364,11 @@ class Ticker: if reviews: continue # 已有审查,跳过 + # 检查是否最近已 dispatch 过 review(防重复 dispatch) + existing = self._check_recent_routing(db_path, task.id, "review") + if existing: + continue # 已有活跃 review dispatch + # 检查是否有产出(司马懿建议:无产出直接标 failed) outputs = bb.get_outputs(task.id) if not outputs: