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

推荐订阅源

The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
月光博客
月光博客
博客园 - Franky
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
有赞技术团队
有赞技术团队
V
V2EX
IT之家
IT之家
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
Apple Machine Learning Research
Apple Machine Learning Research
腾讯CDC
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
Martin Fowler
Martin Fowler
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
C
Check Point Blog
Microsoft Azure Blog
Microsoft Azure Blog
Microsoft Security Blog
Microsoft Security Blog

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): keep native hook relay alive for long turns ·...
2026-05-09 · via Recent Commits to openclaw:main

@@ -134,8 +134,11 @@ import { filterToolsForVisionInputs } from "./vision-tools.js";

134134135135

const CODEX_DYNAMIC_TOOL_TIMEOUT_MS = 30_000;

136136

const CODEX_APP_SERVER_STARTUP_CONNECTION_CLOSE_MAX_ATTEMPTS = 3;

137+

const CODEX_APP_SERVER_STARTUP_TIMEOUT_FLOOR_MS = 100;

137138

const CODEX_TURN_COMPLETION_IDLE_TIMEOUT_MS = 60_000;

138139

const CODEX_TURN_TERMINAL_IDLE_TIMEOUT_MS = 30 * 60_000;

140+

const CODEX_NATIVE_HOOK_RELAY_MIN_TTL_MS = 30 * 60_000;

141+

const CODEX_NATIVE_HOOK_RELAY_TTL_GRACE_MS = 5 * 60_000;

139142

const CODEX_STEER_ALL_DEBOUNCE_MS = 500;

140143

const LOG_FIELD_MAX_LENGTH = 160;

141144

const CODEX_NATIVE_PROJECT_DOC_BASENAMES = new Set(["agents.md"]);

@@ -649,6 +652,10 @@ export async function runCodexAppServerAttempt(

649652

let trajectoryEndRecorded = false;

650653

let nativeHookRelay: NativeHookRelayRegistrationHandle | undefined;

651654

let startupClientForCleanup: CodexAppServerClient | undefined;

655+

const startupTimeoutMs = resolveCodexStartupTimeoutMs({

656+

timeoutMs: params.timeoutMs,

657+

timeoutFloorMs: options.startupTimeoutFloorMs,

658+

});

652659

try {

653660

emitCodexAppServerEvent(params, {

654661

stream: "codex_app_server.lifecycle",

@@ -662,6 +669,9 @@ export async function runCodexAppServerAttempt(

662669

sessionKey: sandboxSessionKey,

663670

config: params.config,

664671

runId: params.runId,

672+

attemptTimeoutMs: params.timeoutMs,

673+

startupTimeoutMs,

674+

turnStartTimeoutMs: params.timeoutMs,

665675

signal: runAbortController.signal,

666676

});

667677

const nativeHookRelayConfig = nativeHookRelay

@@ -705,8 +715,7 @@ export async function runCodexAppServerAttempt(

705715

}

706716

: appServer;

707717

({ client, thread } = await withCodexStartupTimeout({

708-

timeoutMs: params.timeoutMs,

709-

timeoutFloorMs: options.startupTimeoutFloorMs,

718+

timeoutMs: startupTimeoutMs,

710719

signal: runAbortController.signal,

711720

operation: async () => {

712721

let attemptedClient: CodexAppServerClient | undefined;

@@ -1630,6 +1639,9 @@ function createCodexNativeHookRelay(params: {

16301639

sessionKey: string | undefined;

16311640

config: EmbeddedRunAttemptParams["config"];

16321641

runId: string;

1642+

attemptTimeoutMs: number;

1643+

startupTimeoutMs: number;

1644+

turnStartTimeoutMs: number;

16331645

signal: AbortSignal;

16341646

}): NativeHookRelayRegistrationHandle | undefined {

16351647

if (params.options?.enabled === false) {

@@ -1648,7 +1660,12 @@ function createCodexNativeHookRelay(params: {

16481660

...(params.config ? { config: params.config } : {}),

16491661

runId: params.runId,

16501662

allowedEvents: params.events,

1651-

ttlMs: params.options?.ttlMs,

1663+

ttlMs: resolveCodexNativeHookRelayTtlMs({

1664+

explicitTtlMs: params.options?.ttlMs,

1665+

attemptTimeoutMs: params.attemptTimeoutMs,

1666+

startupTimeoutMs: params.startupTimeoutMs,

1667+

turnStartTimeoutMs: params.turnStartTimeoutMs,

1668+

}),

16521669

signal: params.signal,

16531670

command: {

16541671

timeoutMs: params.options?.gatewayTimeoutMs,

@@ -1672,6 +1689,23 @@ function resolveCodexNativeHookRelayEvents(params: {

16721689

: CODEX_NATIVE_HOOK_RELAY_EVENTS_WITH_APP_SERVER_APPROVALS;

16731690

}

167416911692+

function resolveCodexNativeHookRelayTtlMs(params: {

1693+

explicitTtlMs: number | undefined;

1694+

attemptTimeoutMs: number;

1695+

startupTimeoutMs: number;

1696+

turnStartTimeoutMs: number;

1697+

}): number {

1698+

if (params.explicitTtlMs !== undefined) {

1699+

return params.explicitTtlMs;

1700+

}

1701+

const relayBudgetMs =

1702+

params.attemptTimeoutMs +

1703+

params.startupTimeoutMs +

1704+

params.turnStartTimeoutMs +

1705+

CODEX_NATIVE_HOOK_RELAY_TTL_GRACE_MS;

1706+

return Math.max(CODEX_NATIVE_HOOK_RELAY_MIN_TTL_MS, Math.floor(relayBudgetMs));

1707+

}

1708+16751709

function buildCodexNativeHookRelayId(params: {

16761710

agentId: string | undefined;

16771711

sessionId: string;

@@ -1855,7 +1889,6 @@ function shouldProjectMirroredHistoryForCodexStart(params: {

1855188918561890

async function withCodexStartupTimeout<T>(params: {

18571891

timeoutMs: number;

1858-

timeoutFloorMs?: number;

18591892

signal: AbortSignal;

18601893

operation: () => Promise<T>;

18611894

}): Promise<T> {

@@ -1875,10 +1908,9 @@ async function withCodexStartupTimeout<T>(params: {

18751908

}

18761909

reject(error);

18771910

};

1878-

const timeoutMs = Math.max(params.timeoutFloorMs ?? 100, params.timeoutMs);

18791911

timeout = setTimeout(() => {

18801912

rejectOnce(new Error("codex app-server startup timed out"));

1881-

}, timeoutMs);

1913+

}, params.timeoutMs);

18821914

const abortListener = () => rejectOnce(new Error("codex app-server startup aborted"));

18831915

params.signal.addEventListener("abort", abortListener, { once: true });

18841916

abortCleanup = () => params.signal.removeEventListener("abort", abortListener);

@@ -1892,6 +1924,16 @@ async function withCodexStartupTimeout<T>(params: {

18921924

}

18931925

}

189419261927+

function resolveCodexStartupTimeoutMs(params: {

1928+

timeoutMs: number;

1929+

timeoutFloorMs?: number;

1930+

}): number {

1931+

return Math.max(

1932+

params.timeoutFloorMs ?? CODEX_APP_SERVER_STARTUP_TIMEOUT_FLOOR_MS,

1933+

params.timeoutMs,

1934+

);

1935+

}

1936+18951937

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

18961938

if (value === undefined) {

18971939

return CODEX_TURN_COMPLETION_IDLE_TIMEOUT_MS;