fix(awooop): sunset legacy mcp blocker

This commit is contained in:
ogt
2026-07-11 19:36:46 +08:00
parent f00217593a
commit 476c6a6315
2 changed files with 41 additions and 1 deletions

View File

@@ -619,7 +619,11 @@ def _truth_status(
if gateway_mcp_total == 0:
blockers.append("awooop_mcp_gateway_audit_empty")
if legacy_mcp_total == 0 and incident is not None:
# The first-class gateway is the authoritative MCP audit path. The
# retired legacy bridge may be absent without blocking an incident that
# already has gateway receipts; requiring both would turn a superseded
# compatibility path into a permanent false blocker.
if gateway_mcp_total == 0 and legacy_mcp_total == 0 and incident is not None:
blockers.append("legacy_mcp_audit_missing")
if outbound_visible_total == 0:
blockers.append("outbound_mirror_not_visible_for_source")