chore: increase default max active claims to 20

This commit is contained in:
Bohdan Triapitsyn
2026-08-16 17:31:55 +03:00
parent 58c190f0b1
commit 80150aaf0d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ import {
const PIPELINE = "as"; const PIPELINE = "as";
// Resolved before command dispatch so every command shares one claims location. // Resolved before command dispatch so every command shares one claims location.
const { runsDir: RUNS_DIR, shared: SHARED_CLAIMS } = resolveRunsDir(parseArgs(process.argv.slice(2))["claims-dir"]); const { runsDir: RUNS_DIR, shared: SHARED_CLAIMS } = resolveRunsDir(parseArgs(process.argv.slice(2))["claims-dir"]);
const DEFAULT_MAX_ACTIVE = 10; const DEFAULT_MAX_ACTIVE = 20;
const DEFAULT_CLAIM_TTL_DAYS = 3; const DEFAULT_CLAIM_TTL_DAYS = 3;
// Rules ordered by how mechanical and behavior-safe their fixes are. Higher // Rules ordered by how mechanical and behavior-safe their fixes are. Higher
+1 -1
View File
@@ -20,7 +20,7 @@ const REACT_DOCTOR_VERSION = "0.9.12";
const PIPELINE = "rd"; const PIPELINE = "rd";
// Resolved before command dispatch so every command shares one claims location. // Resolved before command dispatch so every command shares one claims location.
const { runsDir: RUNS_DIR, shared: SHARED_CLAIMS } = resolveRunsDir(parseArgs(process.argv.slice(2))["claims-dir"]); const { runsDir: RUNS_DIR, shared: SHARED_CLAIMS } = resolveRunsDir(parseArgs(process.argv.slice(2))["claims-dir"]);
const DEFAULT_MAX_ACTIVE = 10; const DEFAULT_MAX_ACTIVE = 20;
const DEFAULT_CLAIM_TTL_DAYS = 3; const DEFAULT_CLAIM_TTL_DAYS = 3;
const PRIORITY_RULES = new Map([ const PRIORITY_RULES = new Map([