patchrelay 0.36.5 → 0.36.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/build-info.json +3 -3
- package/dist/run-orchestrator.js +6 -1
- package/package.json +1 -1
package/dist/build-info.json
CHANGED
package/dist/run-orchestrator.js
CHANGED
|
@@ -12,7 +12,12 @@ import { getThreadTurns } from "./codex-thread-utils.js";
|
|
|
12
12
|
import { deriveIssueSessionReactiveIntent } from "./issue-session.js";
|
|
13
13
|
const DEFAULT_CI_REPAIR_BUDGET = 3;
|
|
14
14
|
const DEFAULT_QUEUE_REPAIR_BUDGET = 3;
|
|
15
|
-
|
|
15
|
+
// Requested-changes loops can legitimately take more iterations than CI/queue
|
|
16
|
+
// repair when the reviewer is catching nuanced product or timing bugs across
|
|
17
|
+
// successive heads. Keep a hard ceiling to prevent infinite ping-pong, but make
|
|
18
|
+
// it wide enough that real review cycles can continue after multiple successful
|
|
19
|
+
// head advances.
|
|
20
|
+
const DEFAULT_REVIEW_FIX_BUDGET = 12;
|
|
16
21
|
const DEFAULT_ZOMBIE_RECOVERY_BUDGET = 5;
|
|
17
22
|
const ZOMBIE_RECOVERY_BASE_DELAY_MS = 15_000; // 15s, 30s, 60s, 120s, 240s
|
|
18
23
|
const ISSUE_SESSION_LEASE_MS = 10 * 60_000;
|