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

推荐订阅源

博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog
Jina AI
Jina AI
Vercel News
Vercel News
H
Help Net Security
Martin Fowler
Martin Fowler
美团技术团队
云风的 BLOG
云风的 BLOG
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
MongoDB | Blog
MongoDB | Blog
宝玉的分享
宝玉的分享
小众软件
小众软件
T
Tailwind CSS Blog
WordPress大学
WordPress大学

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: recover subagent waits after transport drops · openc...
ZiPengWei · 2026-04-25 · via Recent Commits to openclaw:main

@@ -2,7 +2,11 @@ import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

22

import * as sessions from "../config/sessions.js";

33

import * as gateway from "../gateway/call.js";

44

import * as sessionUtils from "../gateway/session-utils.fs.js";

5-

import { recoverOrphanedSubagentSessions } from "./subagent-orphan-recovery.js";

5+

import * as announceDelivery from "./subagent-announce-delivery.js";

6+

import {

7+

recoverOrphanedSubagentSessions,

8+

scheduleOrphanRecovery,

9+

} from "./subagent-orphan-recovery.js";

610

import * as subagentRegistrySteerRuntime from "./subagent-registry-steer-runtime.js";

711

import type { SubagentRunRecord } from "./subagent-registry.types.js";

812

@@ -28,8 +32,19 @@ vi.mock("../gateway/session-utils.fs.js", () => ({

2832

readSessionMessages: vi.fn(() => []),

2933

}));

303435+

vi.mock("./subagent-announce-delivery.js", () => ({

36+

deliverSubagentAnnouncement: vi.fn(async () => ({ delivered: true, path: "direct" })),

37+

isInternalAnnounceRequesterSession: vi.fn(() => false),

38+

loadRequesterSessionEntry: vi.fn(() => ({ entry: {} })),

39+

}));

40+41+

vi.mock("./subagent-announce-origin.js", () => ({

42+

resolveAnnounceOrigin: vi.fn((entry, requesterOrigin) => requesterOrigin),

43+

}));

44+3145

vi.mock("./subagent-registry-steer-runtime.js", () => ({

3246

replaceSubagentRunAfterSteer: vi.fn(() => true),

47+

finalizeInterruptedSubagentRun: vi.fn(async () => 1),

3348

}));

34493550

function createTestRunRecord(overrides: Partial<SubagentRunRecord> = {}): SubagentRunRecord {

@@ -84,10 +99,12 @@ function getResumeMessage() {

849985100

describe("subagent-orphan-recovery", () => {

86101

beforeEach(() => {

102+

vi.useFakeTimers();

87103

vi.clearAllMocks();

88104

});

8910590106

afterEach(() => {

107+

vi.useRealTimers();

91108

vi.restoreAllMocks();

92109

});

93110

@@ -262,6 +279,13 @@ describe("subagent-orphan-recovery", () => {

262279263280

expect(result.recovered).toBe(0);

264281

expect(result.failed).toBe(1);

282+

expect(result.failedRuns).toEqual([

283+

expect.objectContaining({

284+

runId: "run-1",

285+

childSessionKey: "agent:main:subagent:test-session-1",

286+

error: "gateway unavailable",

287+

}),

288+

]);

265289266290

// abortedLastRun flag should NOT be cleared on failure,

267291

// so the next restart can retry the recovery

@@ -369,6 +393,38 @@ describe("subagent-orphan-recovery", () => {

369393

expect(message).toContain("config changes from your previous run were already applied");

370394

});

371395396+

it("announces recovery-in-progress once when a later retry is attempting resume", async () => {

397+

mockSingleAbortedSession();

398+399+

const activeRuns = createActiveRuns(createTestRunRecord());

400+

const notifiedRecoverySessionKeys = new Set<string>();

401+402+

await recoverOrphanedSubagentSessions({

403+

getActiveRuns: () => activeRuns,

404+

attemptNumber: 2,

405+

maxAttempts: 4,

406+

notifiedRecoverySessionKeys,

407+

});

408+409+

expect(announceDelivery.deliverSubagentAnnouncement).toHaveBeenCalledOnce();

410+

expect(announceDelivery.deliverSubagentAnnouncement).toHaveBeenCalledWith(

411+

expect.objectContaining({

412+

requesterSessionKey: "agent:main:quietchat:direct:+1234567890",

413+

triggerMessage: expect.stringContaining("Automatic recovery is already in progress"),

414+

}),

415+

);

416+

expect(notifiedRecoverySessionKeys).toEqual(new Set(["agent:main:subagent:test-session-1"]));

417+418+

await recoverOrphanedSubagentSessions({

419+

getActiveRuns: () => activeRuns,

420+

attemptNumber: 3,

421+

maxAttempts: 4,

422+

notifiedRecoverySessionKeys,

423+

});

424+425+

expect(announceDelivery.deliverSubagentAnnouncement).toHaveBeenCalledOnce();

426+

});

427+372428

it("prevents duplicate resume when updateSessionStore fails", async () => {

373429

vi.mocked(gateway.callGateway).mockResolvedValue({ runId: "new-run" } as never);

374430

vi.mocked(sessions.updateSessionStore).mockRejectedValue(new Error("write failed"));

@@ -429,4 +485,41 @@ describe("subagent-orphan-recovery", () => {

429485

expect(gateway.callGateway).toHaveBeenCalledOnce();

430486

expect(sessions.updateSessionStore).toHaveBeenCalledOnce();

431487

});

488+489+

it("finalizes interrupted runs with a readable failure after recovery retries are exhausted", async () => {

490+

vi.mocked(sessions.loadSessionStore).mockReturnValue({

491+

"agent:main:subagent:test-session-1": {

492+

sessionId: "session-abc",

493+

updatedAt: Date.now(),

494+

abortedLastRun: true,

495+

},

496+

});

497+

vi.mocked(gateway.callGateway).mockRejectedValue(new Error("service restart"));

498+499+

const activeRuns = createActiveRuns(createTestRunRecord());

500+501+

scheduleOrphanRecovery({

502+

getActiveRuns: () => activeRuns,

503+

delayMs: 1,

504+

maxRetries: 1,

505+

});

506+507+

await vi.advanceTimersByTimeAsync(1);

508+

await Promise.resolve();

509+

await vi.advanceTimersByTimeAsync(2);

510+

await Promise.resolve();

511+512+

expect(subagentRegistrySteerRuntime.finalizeInterruptedSubagentRun).toHaveBeenCalledWith(

513+

expect.objectContaining({

514+

runId: "run-1",

515+

childSessionKey: "agent:main:subagent:test-session-1",

516+

error: expect.stringContaining("Automatic recovery failed after 2 attempts"),

517+

}),

518+

);

519+

expect(subagentRegistrySteerRuntime.finalizeInterruptedSubagentRun).toHaveBeenCalledWith(

520+

expect.objectContaining({

521+

error: expect.stringContaining("service restart"),

522+

}),

523+

);

524+

});

432525

});