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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
WordPress大学
WordPress大学
U
Unit 42
I
InfoQ
A
About on SuperTechFans
宝玉的分享
宝玉的分享
J
Java Code Geeks
博客园 - 司徒正美
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
G
Google Developers Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
腾讯CDC
Recent Announcements
Recent Announcements

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): preserve shared app-server when spawned helpe...
yetval · 2026-05-28 · via Recent Commits to openclaw:main

@@ -27,6 +27,7 @@ import { CODEX_GPT5_BEHAVIOR_CONTRACT } from "../../prompt-overlay.js";

2727

import { defaultCodexAppInventoryCache } from "./app-inventory-cache.js";

2828

import * as authBridge from "./auth-bridge.js";

2929

import { resolveCodexAppServerEnvApiKeyCacheKey } from "./auth-bridge.js";

30+

import { CodexAppServerRpcError } from "./client.js";

3031

import { readCodexPluginConfig, resolveCodexAppServerRuntimeOptions } from "./config.js";

3132

import {

3233

CODEX_OPENCLAW_DYNAMIC_TOOL_NAMESPACE,

@@ -65,6 +66,7 @@ import {

6566

} from "./sandbox-exec-server.js";

6667

import { createSandboxContext } from "./sandbox-exec-server.test-helpers.js";

6768

import { readCodexAppServerBinding, writeCodexAppServerBinding } from "./session-binding.js";

69+

import * as sharedClientModule from "./shared-client.js";

6870

import { createCodexTestModel } from "./test-support.js";

6971

import { buildTurnStartParams, startOrResumeThread } from "./thread-lifecycle.js";

7072

@@ -3489,6 +3491,134 @@ describe("runCodexAppServerAttempt", () => {

34893491

]);

34903492

});

349134933494+

it("does not retire the shared Codex client when a spawned helper run fails with a logical thread/start error", async () => {

3495+

const clearSpy = vi.spyOn(sharedClientModule, "clearSharedCodexAppServerClientIfCurrent");

3496+

clearSpy.mockClear();

3497+

let failedClient: unknown;

3498+

setCodexAppServerClientFactoryForTest(async () => {

3499+

const c = {

3500+

request: vi.fn(async (method: string) => {

3501+

if (method === "thread/start") {

3502+

throw new CodexAppServerRpcError(

3503+

{ message: "401 authentication_error: Invalid bearer token" },

3504+

"thread/start",

3505+

);

3506+

}

3507+

return {};

3508+

}),

3509+

addNotificationHandler: vi.fn(() => () => undefined),

3510+

addRequestHandler: vi.fn(() => () => undefined),

3511+

};

3512+

failedClient = c;

3513+

return c as never;

3514+

});

3515+

const params = createParams(

3516+

path.join(tempDir, "session.jsonl"),

3517+

path.join(tempDir, "workspace"),

3518+

);

3519+

params.spawnedBy = "agent:main:session-parent";

3520+3521+

await expect(runCodexAppServerAttempt(params)).rejects.toThrow("Invalid bearer token");

3522+

const calledWithFailedClient = clearSpy.mock.calls.some(([arg]) => arg === failedClient);

3523+

expect(calledWithFailedClient).toBe(false);

3524+

clearSpy.mockRestore();

3525+

});

3526+3527+

it("retires the shared Codex client when a spawned helper run times out during thread/start", async () => {

3528+

const clearSpy = vi.spyOn(sharedClientModule, "clearSharedCodexAppServerClientIfCurrent");

3529+

clearSpy.mockClear();

3530+

let failedClient: unknown;

3531+

setCodexAppServerClientFactoryForTest(async () => {

3532+

const c = {

3533+

request: vi.fn(async (method: string) => {

3534+

if (method === "thread/start") {

3535+

return await new Promise<never>(() => undefined);

3536+

}

3537+

return {};

3538+

}),

3539+

addNotificationHandler: vi.fn(() => () => undefined),

3540+

addRequestHandler: vi.fn(() => () => undefined),

3541+

};

3542+

failedClient = c;

3543+

return c as never;

3544+

});

3545+

const params = createParams(

3546+

path.join(tempDir, "session.jsonl"),

3547+

path.join(tempDir, "workspace"),

3548+

);

3549+

params.spawnedBy = "agent:main:session-parent";

3550+

params.timeoutMs = 1;

3551+3552+

await expect(runCodexAppServerAttempt(params, { startupTimeoutFloorMs: 1 })).rejects.toThrow(

3553+

"codex app-server startup timed out",

3554+

);

3555+

const calledWithFailedClient = clearSpy.mock.calls.some(([arg]) => arg === failedClient);

3556+

expect(calledWithFailedClient).toBe(true);

3557+

clearSpy.mockRestore();

3558+

});

3559+3560+

it("retires the shared Codex client when a spawned helper hits a thread/start write failure", async () => {

3561+

const clearSpy = vi.spyOn(sharedClientModule, "clearSharedCodexAppServerClientIfCurrent");

3562+

clearSpy.mockClear();

3563+

let failedClient: unknown;

3564+

setCodexAppServerClientFactoryForTest(async () => {

3565+

const c = {

3566+

request: vi.fn(async (method: string) => {

3567+

if (method === "thread/start") {

3568+

throw new Error("write EPIPE");

3569+

}

3570+

return {};

3571+

}),

3572+

addNotificationHandler: vi.fn(() => () => undefined),

3573+

addRequestHandler: vi.fn(() => () => undefined),

3574+

};

3575+

failedClient = c;

3576+

return c as never;

3577+

});

3578+

const params = createParams(

3579+

path.join(tempDir, "session.jsonl"),

3580+

path.join(tempDir, "workspace"),

3581+

);

3582+

params.spawnedBy = "agent:main:session-parent";

3583+3584+

await expect(runCodexAppServerAttempt(params)).rejects.toThrow("write EPIPE");

3585+

const calledWithFailedClient = clearSpy.mock.calls.some(([arg]) => arg === failedClient);

3586+

expect(calledWithFailedClient).toBe(true);

3587+

clearSpy.mockRestore();

3588+

});

3589+3590+

it("retires the shared Codex client when a top-level run fails with a logical thread/start error", async () => {

3591+

const clearSpy = vi.spyOn(sharedClientModule, "clearSharedCodexAppServerClientIfCurrent");

3592+

clearSpy.mockClear();

3593+

let failedClient: unknown;

3594+

setCodexAppServerClientFactoryForTest(async () => {

3595+

const c = {

3596+

request: vi.fn(async (method: string) => {

3597+

if (method === "thread/start") {

3598+

throw new CodexAppServerRpcError(

3599+

{ message: "401 authentication_error: Invalid bearer token" },

3600+

"thread/start",

3601+

);

3602+

}

3603+

return {};

3604+

}),

3605+

addNotificationHandler: vi.fn(() => () => undefined),

3606+

addRequestHandler: vi.fn(() => () => undefined),

3607+

};

3608+

failedClient = c;

3609+

return c as never;

3610+

});

3611+

const params = createParams(

3612+

path.join(tempDir, "session.jsonl"),

3613+

path.join(tempDir, "workspace"),

3614+

);

3615+3616+

await expect(runCodexAppServerAttempt(params)).rejects.toThrow("Invalid bearer token");

3617+

const calledWithFailedClient = clearSpy.mock.calls.some(([arg]) => arg === failedClient);

3618+

expect(calledWithFailedClient).toBe(true);

3619+

clearSpy.mockRestore();

3620+

});

3621+34923622

it("passes configured app-server policy, sandbox, service tier, and model on resume", async () => {

34933623

const sessionFile = path.join(tempDir, "session.jsonl");

34943624

const workspaceDir = path.join(tempDir, "workspace");