fix(code-queue): allow manual retry past ten attempts

This commit is contained in:
Codex
2026-05-16 10:24:42 +00:00
parent 553afbcc8e
commit 15b5f7124b
@@ -162,7 +162,7 @@ const firstPaintOverviewWarmUrl = "http://code-queue.local/api/tasks/overview?li
let firstPaintOverviewWarmInFlight: Promise<void> | null = null;
const judgeFailRetryLimit = 3;
const fallbackJudgeRetryLimit = 3;
const maxTaskAttempts = 10;
const maxTaskAttempts = 99;
const referenceInjectionMaxRounds: number | null = null;
const retryBackoffBaseMs = 1000;
const retryBackoffMaxMs = 10 * 60 * 1000;