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

推荐订阅源

GbyAI
GbyAI
Martin Fowler
Martin Fowler
I
InfoQ
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
D
Docker
博客园 - 三生石上(FineUI控件)
Y
Y Combinator Blog
博客园 - Franky
Engineering at Meta
Engineering at Meta
B
Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
V
Visual Studio 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 run lane timeout progress-aware · opencl...
steipete · 2026-05-16 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1604,6 +1604,8 @@ describe("runCodexAppServerAttempt", () => {

16041604

path.join(tempDir, "workspace"),

16051605

);

16061606

params.timeoutMs = 100;

1607+

const onRunProgress = vi.fn();

1608+

params.onRunProgress = onRunProgress;

16071609
16081610

const run = runCodexAppServerAttempt(params, {

16091611

turnCompletionIdleTimeoutMs: 300,

@@ -1649,6 +1651,11 @@ describe("runCodexAppServerAttempt", () => {

16491651

expect(result.timedOut).toBe(false);

16501652

expect(result.promptError).toBeNull();

16511653

expect(harness.request.mock.calls.some(([method]) => method === "turn/interrupt")).toBe(false);

1654+

const progressReasons = onRunProgress.mock.calls.map(([info]) => info.reason);

1655+

expect(progressReasons).toContain("turn:start");

1656+

expect(

1657+

progressReasons.filter((reason) => reason === "notification:rawResponseItem/completed"),

1658+

).toHaveLength(2);

16521659

});

16531660
16541661

it("does not count non-turn app-server requests as turn attempt progress", async () => {

@@ -1659,6 +1666,8 @@ describe("runCodexAppServerAttempt", () => {

16591666

path.join(tempDir, "workspace"),

16601667

);

16611668

params.timeoutMs = 100;

1669+

const onRunProgress = vi.fn();

1670+

params.onRunProgress = onRunProgress;

16621671
16631672

const run = runCodexAppServerAttempt(params, {

16641673

turnCompletionIdleTimeoutMs: 500,

@@ -1689,6 +1698,7 @@ describe("runCodexAppServerAttempt", () => {

16891698

expect(warnData?.timeoutMs).toBe(100);

16901699

expect(warnData?.lastActivityReason).toBe("turn:start");

16911700

expect(harness.request.mock.calls.some(([method]) => method === "turn/interrupt")).toBe(true);

1701+

expect(onRunProgress.mock.calls.map(([info]) => info.reason)).toEqual(["turn:start"]);

16921702

});

16931703
16941704

it("keeps the turn attempt timeout armed while non-turn requests are pending", async () => {

Original file line numberDiff line numberDiff line change

@@ -1353,6 +1353,12 @@ export async function runCodexAppServerAttempt(

13531353

turnAttemptLastProgressReason = reason;

13541354

turnAttemptLastProgressDetails = options.details;

13551355

renewNativeHookRelayForTurnProgress();

1356+

params.onRunProgress?.({

1357+

reason,

1358+

provider: params.provider,

1359+

model: params.modelId,

1360+

backend: "codex-app-server",

1361+

});

13561362

}

13571363

emitTrustedDiagnosticEvent({

13581364

type: "run.progress",

Original file line numberDiff line numberDiff line change

@@ -379,8 +379,18 @@ export async function runEmbeddedPiAgent(

379379

const sessionLane = resolveSessionLane(params.sessionKey?.trim() || params.sessionId);

380380

const globalLane = resolveGlobalLane(params.lane);

381381

const laneTaskTimeoutMs = resolveEmbeddedRunLaneTimeoutMs(params.timeoutMs);

382+

let laneTaskProgressAtMs = Date.now();

383+

const noteLaneTaskProgress = () => {

384+

laneTaskProgressAtMs = Date.now();

385+

};

382386

const withLaneTimeout = (opts?: CommandQueueEnqueueOptions) =>

383-

withEmbeddedRunLaneTimeout(opts, laneTaskTimeoutMs);

387+

withEmbeddedRunLaneTimeout(

388+

{

389+

...opts,

390+

taskTimeoutProgressAtMs: () => laneTaskProgressAtMs,

391+

},

392+

laneTaskTimeoutMs,

393+

);

384394

const enqueueGlobal = <T>(task: () => Promise<T>, opts?: CommandQueueEnqueueOptions) =>

385395

params.enqueue

386396

? params.enqueue(task, withLaneTimeout(opts))

@@ -429,8 +439,15 @@ export async function runEmbeddedPiAgent(

429439

"phase"

430440

>,

431441

) => {

442+

noteLaneTaskProgress();

432443

params.onExecutionPhase?.({ phase, ...extra });

433444

};

445+

const notifyRunProgress = (

446+

info: Parameters<NonNullable<RunEmbeddedPiAgentParams["onRunProgress"]>>[0],

447+

) => {

448+

noteLaneTaskProgress();

449+

params.onRunProgress?.(info);

450+

};

434451

const emitStartupStageSummary = (phase: string) => {

435452

const summary = startupStages.snapshot();

436453

const shouldWarn = shouldWarnEmbeddedRunStageSummary(summary);

@@ -1370,6 +1387,7 @@ export async function runEmbeddedPiAgent(

13701387

legacyBeforeAgentStartResult,

13711388

thinkLevel,

13721389

onToolOutcome: observePostCompactionToolOutcome,

1390+

onRunProgress: notifyRunProgress,

13731391

fastMode: params.fastMode,

13741392

verboseLevel: params.verboseLevel,

13751393

reasoningLevel: params.reasoningLevel,

Original file line numberDiff line numberDiff line change

@@ -177,6 +177,12 @@ export type RunEmbeddedPiAgentParams = {

177177

itemId?: string;

178178

firstModelCallStarted?: boolean;

179179

}) => void;

180+

onRunProgress?: (info: {

181+

reason: string;

182+

provider?: string;

183+

model?: string;

184+

backend?: string;

185+

}) => void;

180186

replyOperation?: ReplyOperation;

181187

shouldEmitToolResult?: () => boolean;

182188

shouldEmitToolOutput?: () => boolean;

Original file line numberDiff line numberDiff line change

@@ -391,6 +391,72 @@ describe("command queue", () => {

391391

}

392392

});

393393
394+

it("task timeout renews from progress timestamps", async () => {

395+

const lane = `timeout-progress-lane-${Date.now()}-${Math.random().toString(16).slice(2)}`;

396+

setCommandLaneConcurrency(lane, 1);

397+
398+

vi.useFakeTimers();

399+

try {

400+

let progressAtMs = Date.now();

401+

const blocker = createDeferred();

402+

const first = enqueueCommandInLane(

403+

lane,

404+

async () => {

405+

await blocker.promise;

406+

return "first";

407+

},

408+

{

409+

taskTimeoutMs: 25,

410+

taskTimeoutProgressAtMs: () => progressAtMs,

411+

},

412+

);

413+

let secondRan = false;

414+

const second = enqueueCommandInLane(lane, async () => {

415+

secondRan = true;

416+

return "second";

417+

});

418+
419+

await vi.advanceTimersByTimeAsync(20);

420+

progressAtMs = Date.now();

421+

await vi.advanceTimersByTimeAsync(20);

422+

expect(secondRan).toBe(false);

423+
424+

blocker.resolve();

425+

await expect(first).resolves.toBe("first");

426+

await expect(second).resolves.toBe("second");

427+

expect(secondRan).toBe(true);

428+

} finally {

429+

vi.useRealTimers();

430+

}

431+

});

432+
433+

it("task timeout falls back when progress timestamp callback throws", async () => {

434+

const lane = `timeout-progress-throw-lane-${Date.now()}-${Math.random().toString(16).slice(2)}`;

435+

setCommandLaneConcurrency(lane, 1);

436+
437+

vi.useFakeTimers();

438+

try {

439+

const first = enqueueCommandInLane(lane, async () => new Promise<never>(() => {}), {

440+

taskTimeoutMs: 25,

441+

taskTimeoutProgressAtMs: () => {

442+

throw new Error("progress failed");

443+

},

444+

});

445+

const firstRejected = expect(first).rejects.toBeInstanceOf(CommandLaneTaskTimeoutError);

446+
447+

await vi.advanceTimersByTimeAsync(25);

448+

await firstRejected;

449+
450+

expect(

451+

diagnosticMocks.diag.warn.mock.calls.some(([message]) =>

452+

String(message).includes("lane task timeout progress callback failed"),

453+

),

454+

).toBe(true);

455+

} finally {

456+

vi.useRealTimers();

457+

}

458+

});

459+
394460

it("keeps work queued while a lane has zero concurrency and drains after resume", async () => {

395461

const lane = `suspended-lane-${Date.now()}-${Math.random().toString(16).slice(2)}`;

396462

setCommandLaneConcurrency(lane, 0);

Original file line numberDiff line numberDiff line change

@@ -63,6 +63,7 @@ type QueueEntry = {

6363

enqueuedAt: number;

6464

warnAfterMs: number;

6565

taskTimeoutMs?: number;

66+

taskTimeoutProgressAtMs?: () => number | undefined;

6667

onWait?: (waitMs: number, queuedAhead: number) => void;

6768

};

6869

@@ -210,14 +211,33 @@ async function runQueueEntryTask(lane: string, entry: QueueEntry): Promise<unkno

210211

return await taskPromise;

211212

}

212213
214+

const startedAtMs = Date.now();

215+

const readLastProgressAtMs = () => {

216+

let value: number | undefined;

217+

try {

218+

value = entry.taskTimeoutProgressAtMs?.();

219+

} catch (err) {

220+

diag.warn(`lane task timeout progress callback failed: lane=${lane} error="${String(err)}"`);

221+

}

222+

return typeof value === "number" && Number.isFinite(value) && value > 0

223+

? Math.max(startedAtMs, Math.floor(value))

224+

: startedAtMs;

225+

};

213226

let timeoutHandle: ReturnType<typeof setTimeout> | undefined;

214227

let timedOut = false;

215228

const timeoutPromise = new Promise<never>((_, reject) => {

216-

timeoutHandle = setTimeout(() => {

217-

timedOut = true;

218-

reject(new CommandLaneTaskTimeoutError(lane, taskTimeoutMs));

219-

}, taskTimeoutMs);

220-

timeoutHandle.unref?.();

229+

const armTimeout = () => {

230+

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

231+

const remainingMs = taskTimeoutMs - elapsedMs;

232+

if (remainingMs <= 0) {

233+

timedOut = true;

234+

reject(new CommandLaneTaskTimeoutError(lane, taskTimeoutMs));

235+

return;

236+

}

237+

timeoutHandle = setTimeout(armTimeout, remainingMs);

238+

timeoutHandle.unref?.();

239+

};

240+

armTimeout();

221241

});

222242
223243

try {

@@ -349,6 +369,7 @@ export function enqueueCommandInLane<T>(

349369

enqueuedAt: Date.now(),

350370

warnAfterMs,

351371

taskTimeoutMs: normalizeTaskTimeoutMs(opts?.taskTimeoutMs),

372+

taskTimeoutProgressAtMs: opts?.taskTimeoutProgressAtMs,

352373

onWait: opts?.onWait,

353374

});

354375

logLaneEnqueue(cleaned, getLaneDepth(state));

Original file line numberDiff line numberDiff line change

@@ -2,6 +2,7 @@ export type CommandQueueEnqueueOptions = {

22

warnAfterMs?: number;

33

onWait?: (waitMs: number, queuedAhead: number) => void;

44

taskTimeoutMs?: number;

5+

taskTimeoutProgressAtMs?: () => number | undefined;

56

};

67
78

export type CommandQueueEnqueueFn = <T>(