Phase6/7 runtime + Gitea smoke gate setup #1

Merged
daarion-admin merged 214 commits from codex/sync-node1-runtime into main 2026-03-05 10:38:18 -08:00
Showing only changes of commit 4d6e73f352 - Show all commits

View File

@@ -405,9 +405,9 @@ async def run_soak(
"— possible SQLite write pressure (Bottleneck #2)"
)
# Rate-limited warning (not a failure, but surfaced prominently)
rl_delta = m.get("rate_limited", 0)
rl_delta = report["metrics_delta"].get("rate_limited", 0)
if rl_delta > 0:
rl_pct = rl_delta / s["total_messages"] * 100
rl_pct = rl_delta / report["summary"]["total_messages"] * 100
report["warnings"] = report.get("warnings", [])
report["warnings"].append(
f"rate_limited={rl_delta:.0f} ({rl_pct:.0f}% of messages) — "