惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
DataBreaches.Net
GbyAI
GbyAI
Microsoft Security Blog
Microsoft Security Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Engineering at Meta
Engineering at Meta
IT之家
IT之家
MongoDB | Blog
MongoDB | Blog
The GitHub Blog
The GitHub Blog
月光博客
月光博客
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
腾讯CDC
B
Blog RSS Feed
博客园 - Franky
爱范儿
爱范儿

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(codex): time out silent app-server turns · openclaw/o...
steipete · 2026-05-01 · via Recent Commits to openclaw:main

@@ -87,6 +87,7 @@ import { filterToolsForVisionInputs } from "./vision-tools.js";

87878888

const CODEX_DYNAMIC_TOOL_TIMEOUT_MS = 30_000;

8989

const CODEX_TURN_COMPLETION_IDLE_TIMEOUT_MS = 60_000;

90+

const CODEX_TURN_TERMINAL_IDLE_TIMEOUT_MS = 30 * 60_000;

9091

const CODEX_STEER_ALL_DEBOUNCE_MS = 500;

91929293

type OpenClawCodingToolsOptions = NonNullable<

@@ -226,6 +227,7 @@ export async function runCodexAppServerAttempt(

226227

hookTimeoutSec?: number;

227228

};

228229

turnCompletionIdleTimeoutMs?: number;

230+

turnTerminalIdleTimeoutMs?: number;

229231

} = {},

230232

): Promise<EmbeddedRunAttemptResult> {

231233

const attemptStartedAt = Date.now();

@@ -471,8 +473,13 @@ export async function runCodexAppServerAttempt(

471473

const turnCompletionIdleTimeoutMs = resolveCodexTurnCompletionIdleTimeoutMs(

472474

options.turnCompletionIdleTimeoutMs,

473475

);

476+

const turnTerminalIdleTimeoutMs = resolveCodexTurnTerminalIdleTimeoutMs(

477+

options.turnTerminalIdleTimeoutMs,

478+

);

474479

let turnCompletionIdleTimer: ReturnType<typeof setTimeout> | undefined;

475480

let turnCompletionIdleWatchArmed = false;

481+

let turnTerminalIdleTimer: ReturnType<typeof setTimeout> | undefined;

482+

let turnTerminalIdleWatchArmed = false;

476483

let turnCompletionLastActivityAt = Date.now();

477484

let turnCompletionLastActivityReason = "startup";

478485

let activeAppServerTurnRequests = 0;

@@ -484,6 +491,13 @@ export async function runCodexAppServerAttempt(

484491

}

485492

};

486493494+

const clearTurnTerminalIdleTimer = () => {

495+

if (turnTerminalIdleTimer) {

496+

clearTimeout(turnTerminalIdleTimer);

497+

turnTerminalIdleTimer = undefined;

498+

}

499+

};

500+487501

const fireTurnCompletionIdleTimeout = () => {

488502

if (

489503

completed ||

@@ -520,6 +534,42 @@ export async function runCodexAppServerAttempt(

520534

runAbortController.abort("turn_completion_idle_timeout");

521535

};

522536537+

const fireTurnTerminalIdleTimeout = () => {

538+

if (

539+

completed ||

540+

runAbortController.signal.aborted ||

541+

!turnTerminalIdleWatchArmed ||

542+

activeAppServerTurnRequests > 0

543+

) {

544+

return;

545+

}

546+

const idleMs = Math.max(0, Date.now() - turnCompletionLastActivityAt);

547+

if (idleMs < turnTerminalIdleTimeoutMs) {

548+

scheduleTurnTerminalIdleWatch();

549+

return;

550+

}

551+

timedOut = true;

552+

turnCompletionIdleTimedOut = true;

553+

turnCompletionIdleTimeoutMessage =

554+

"codex app-server turn idle timed out waiting for turn/completed";

555+

projector?.markTimedOut();

556+

trajectoryRecorder?.recordEvent("turn.terminal_idle_timeout", {

557+

threadId: thread.threadId,

558+

turnId,

559+

idleMs,

560+

timeoutMs: turnTerminalIdleTimeoutMs,

561+

lastActivityReason: turnCompletionLastActivityReason,

562+

});

563+

embeddedAgentLog.warn("codex app-server turn idle timed out waiting for terminal event", {

564+

threadId: thread.threadId,

565+

turnId,

566+

idleMs,

567+

timeoutMs: turnTerminalIdleTimeoutMs,

568+

lastActivityReason: turnCompletionLastActivityReason,

569+

});

570+

runAbortController.abort("turn_terminal_idle_timeout");

571+

};

572+523573

function scheduleTurnCompletionIdleWatch() {

524574

clearTurnCompletionIdleTimer();

525575

if (

@@ -536,13 +586,30 @@ export async function runCodexAppServerAttempt(

536586

turnCompletionIdleTimer.unref?.();

537587

}

538588589+

function scheduleTurnTerminalIdleWatch() {

590+

clearTurnTerminalIdleTimer();

591+

if (

592+

completed ||

593+

runAbortController.signal.aborted ||

594+

!turnTerminalIdleWatchArmed ||

595+

activeAppServerTurnRequests > 0

596+

) {

597+

return;

598+

}

599+

const elapsedMs = Math.max(0, Date.now() - turnCompletionLastActivityAt);

600+

const delayMs = Math.max(1, turnTerminalIdleTimeoutMs - elapsedMs);

601+

turnTerminalIdleTimer = setTimeout(fireTurnTerminalIdleTimeout, delayMs);

602+

turnTerminalIdleTimer.unref?.();

603+

}

604+539605

const touchTurnCompletionActivity = (reason: string, options?: { arm?: boolean }) => {

540606

turnCompletionLastActivityAt = Date.now();

541607

turnCompletionLastActivityReason = reason;

542608

if (options?.arm) {

543609

turnCompletionIdleWatchArmed = true;

544610

}

545611

scheduleTurnCompletionIdleWatch();

612+

scheduleTurnTerminalIdleWatch();

546613

};

547614548615

const emitLifecycleStart = () => {

@@ -595,6 +662,7 @@ export async function runCodexAppServerAttempt(

595662

}

596663

completed = true;

597664

clearTurnCompletionIdleTimer();

665+

clearTurnTerminalIdleTimer();

598666

resolveCompletion?.();

599667

}

600668

}

@@ -839,6 +907,7 @@ export async function runCodexAppServerAttempt(

839907

abort: () => runAbortController.abort("aborted"),

840908

};

841909

setActiveEmbeddedRun(params.sessionId, handle, params.sessionKey);

910+

turnTerminalIdleWatchArmed = true;

842911

touchTurnCompletionActivity("turn:start");

843912844913

const timeout = setTimeout(

@@ -1005,6 +1074,7 @@ export async function runCodexAppServerAttempt(

10051074

userInputBridge?.cancelPending();

10061075

clearTimeout(timeout);

10071076

clearTurnCompletionIdleTimer();

1077+

clearTurnTerminalIdleTimer();

10081078

notificationCleanup();

10091079

requestCleanup();

10101080

nativeHookRelay?.unregister();

@@ -1305,6 +1375,16 @@ function resolveCodexTurnCompletionIdleTimeoutMs(value: number | undefined): num

13051375

return Math.max(1, Math.floor(value));

13061376

}

130713771378+

function resolveCodexTurnTerminalIdleTimeoutMs(value: number | undefined): number {

1379+

if (value === undefined) {

1380+

return CODEX_TURN_TERMINAL_IDLE_TIMEOUT_MS;

1381+

}

1382+

if (!Number.isFinite(value)) {

1383+

return CODEX_TURN_TERMINAL_IDLE_TIMEOUT_MS;

1384+

}

1385+

return Math.max(1, Math.floor(value));

1386+

}

1387+13081388

function readDynamicToolCallParams(

13091389

value: JsonValue | undefined,

13101390

): CodexDynamicToolCallParams | undefined {

@@ -1417,6 +1497,7 @@ function handleApprovalRequest(params: {

14171497

export const __testing = {

14181498

CODEX_DYNAMIC_TOOL_TIMEOUT_MS,

14191499

CODEX_TURN_COMPLETION_IDLE_TIMEOUT_MS,

1500+

CODEX_TURN_TERMINAL_IDLE_TIMEOUT_MS,

14201501

buildCodexNativeHookRelayId,

14211502

filterToolsForVisionInputs,

14221503

handleDynamicToolCallWithTimeout,