fix: allow longer JD01 registry apply

This commit is contained in:
Codex
2026-06-29 12:13:07 +00:00
parent 912090ecd4
commit ee0d33aa23
+1 -1
View File
@@ -1116,7 +1116,7 @@ function parseInfraOptions(args: string[]): InfraOptions {
lane,
confirm,
dryRun: actionRaw === "apply" ? explicitDryRun || !confirm : true,
timeoutSeconds: positiveIntegerOption(args, "--timeout-seconds", 60, 60),
timeoutSeconds: positiveIntegerOption(args, "--timeout-seconds", 60, 300),
};
}