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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
The Cloudflare Blog
量子位
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
MyScale Blog
MyScale Blog
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
D
DataBreaches.Net
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
U
Unit 42
博客园 - 聂微东
有赞技术团队
有赞技术团队
A
About on SuperTechFans

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): extend message tool timeout (#85216) · opencl...
amknight · 2026-05-22 · via Recent Commits to openclaw:main

File tree

  • extensions/codex/src/app-server

Original file line numberDiff line numberDiff line change

@@ -66,6 +66,7 @@ Docs: https://docs.openclaw.ai

6666

- Providers/Ollama: preserve native Ollama tool-call IDs across assistant replay so Gemini over Ollama Cloud can keep its hidden function-call thought-signature handle.

6767

- Discord: keep session recovery and `/stop` abort ownership on the source dispatch lane while bound ACP turns continue routing to their target session, so stalled pre-run work and late replies are cleared instead of leaking after stop. Fixes #84477. (#85100) Thanks @joshavant.

6868

- Codex app-server: mark missing turn completion after observed execution as replay-unsafe and release the session so follow-up turns can run. Fixes #84076. (#85107) Thanks @joshavant.

69+

- Codex app-server: give visible `message` dynamic tool sends a longer timeout budget so slow channel delivery can return its own result or error instead of hitting the 30-second Codex wrapper. (#85216) Thanks @amknight.

6970

- Codex app-server: add a dedicated post-tool raw assistant completion idle timeout config so trusted heavy turns can wait longer after tool handoff without weakening final assistant release.

7071

- Matrix: keep explicitly configured two-person rooms on the room route before stale `m.direct` or strict two-member DM fallback can bypass mention gating. Fixes #85017. (#85137) Thanks @joshavant.

7172

- Agents/subagents: require explicit subagent allowlist targets to be configured agents so stale deleted-agent ids are omitted from `agents_list` and rejected by `sessions_spawn`. Fixes #84811. (#85154) Thanks @joshavant.

Original file line numberDiff line numberDiff line change

@@ -2555,6 +2555,22 @@ describe("runCodexAppServerAttempt", () => {

25552555

).toBe(testing.CODEX_DYNAMIC_IMAGE_TOOL_TIMEOUT_MS);

25562556

});

25572557
2558+

it("keeps Codex message dynamic tool calls above slow channel send deadlines", () => {

2559+

expect(

2560+

testing.resolveDynamicToolCallTimeoutMs({

2561+

call: {

2562+

threadId: "thread-1",

2563+

turnId: "turn-1",

2564+

callId: "call-message",

2565+

namespace: null,

2566+

tool: "message",

2567+

arguments: { action: "send", message: "long outbound update" },

2568+

},

2569+

config: undefined,

2570+

}),

2571+

).toBe(testing.CODEX_DYNAMIC_MESSAGE_TOOL_TIMEOUT_MS);

2572+

});

2573+
25582574

it("caps dynamic tool timeouts at the bridge maximum", () => {

25592575

expect(

25602576

testing.resolveDynamicToolCallTimeoutMs({

Original file line numberDiff line numberDiff line change

@@ -195,6 +195,7 @@ const CODEX_DYNAMIC_TOOL_TIMEOUT_MS = 30_000;

195195

const CODEX_DYNAMIC_TOOL_MAX_TIMEOUT_MS = 600_000;

196196

const CODEX_DYNAMIC_IMAGE_GENERATION_TOOL_TIMEOUT_MS = 120_000;

197197

const CODEX_DYNAMIC_IMAGE_TOOL_TIMEOUT_MS = 60_000;

198+

const CODEX_DYNAMIC_MESSAGE_TOOL_TIMEOUT_MS = 120_000;

198199

const CODEX_APP_SERVER_STARTUP_CONNECTION_CLOSE_MAX_ATTEMPTS = 3;

199200

const CODEX_APP_SERVER_STARTUP_TIMEOUT_FLOOR_MS = 100;

200201

const CODEX_APP_SERVER_INTERRUPT_TIMEOUT_MS = 5_000;

@@ -3255,6 +3256,10 @@ function readConfiguredDynamicToolTimeoutMs(

32553256

);

32563257

}

32573258
3259+

if (toolName === "message") {

3260+

return CODEX_DYNAMIC_MESSAGE_TOOL_TIMEOUT_MS;

3261+

}

3262+
32583263

return undefined;

32593264

}

32603265

@@ -5139,6 +5144,7 @@ export const testing = {

51395144

CODEX_DYNAMIC_TOOL_TIMEOUT_MS,

51405145

CODEX_DYNAMIC_TOOL_MAX_TIMEOUT_MS,

51415146

CODEX_DYNAMIC_IMAGE_TOOL_TIMEOUT_MS,

5147+

CODEX_DYNAMIC_MESSAGE_TOOL_TIMEOUT_MS,

51425148

CODEX_TURN_COMPLETION_IDLE_TIMEOUT_MS,

51435149

CODEX_TURN_TERMINAL_IDLE_TIMEOUT_MS,

51445150

createCodexSteeringQueue,