fix(agentrun): use idle watchdog as sole stdio timeout
This commit is contained in:
@@ -104,7 +104,6 @@ export interface AgentRunLaneSpec {
|
||||
readonly serviceAccount: string;
|
||||
readonly jobNamePrefix: string;
|
||||
readonly idleTimeoutMs: number;
|
||||
readonly missingTerminalAfterToolTimeoutMs: number;
|
||||
readonly backendRetry: {
|
||||
readonly maxAttempts: number;
|
||||
readonly initialBackoffMs: number;
|
||||
@@ -547,7 +546,6 @@ function parseDeployment(input: Record<string, unknown>, path: string): AgentRun
|
||||
serviceAccount: stringField(runner, "serviceAccount", `${path}.runner`),
|
||||
jobNamePrefix: stringField(runner, "jobNamePrefix", `${path}.runner`),
|
||||
idleTimeoutMs: positiveIntegerField(runner, "idleTimeoutMs", `${path}.runner`),
|
||||
missingTerminalAfterToolTimeoutMs: positiveIntegerField(runner, "missingTerminalAfterToolTimeoutMs", `${path}.runner`),
|
||||
backendRetry: parseRunnerBackendRetry(recordField(runner, "backendRetry", `${path}.runner`), `${path}.runner.backendRetry`),
|
||||
apiKeySecretRef: parseSecretRef(recordField(runner, "apiKeySecretRef", `${path}.runner`), `${path}.runner.apiKeySecretRef`),
|
||||
egressProxyUrl: optionalStringField(runner, "egressProxyUrl", `${path}.runner`) ?? null,
|
||||
|
||||
Reference in New Issue
Block a user