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

推荐订阅源

Vercel News
Vercel News
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
IT之家
IT之家
B
Blog
博客园_首页
量子位
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
J
Java Code Geeks
H
Help Net Security
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
D
DataBreaches.Net
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News

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(auto-reply): track memory flush failure exhaustion · ...
Jerry-Xin · 2026-06-01 · via Recent Commits to openclaw:main

@@ -10,6 +10,7 @@ import {

1010

type MemoryFlushPlanResolver,

1111

} from "../../plugins/memory-state.js";

1212

import type { TemplateContext } from "../templating.js";

13+

import type { ReplyPayload } from "../types.js";

1314

import {

1415

runMemoryFlushIfNeeded,

1516

runPreflightCompactionIfNeeded,

@@ -25,6 +26,8 @@ const refreshQueuedFollowupSessionMock = vi.fn();

2526

const incrementCompactionCountMock = vi.fn();

2627

const ensureSelectedAgentHarnessPluginMock = vi.fn();

2728

const ensureMemoryFlushTargetFileMock = vi.fn();

29+

const emitAgentEventMock = vi.fn();

30+

const TEST_MAX_FLUSH_FAILURES = 3;

28312932

function registerMemoryFlushPlanResolverForTest(resolver: MemoryFlushPlanResolver): void {

3033

registerMemoryCapability("memory-core", { flushPlanResolver: resolver });

@@ -171,6 +174,7 @@ describe("runMemoryFlushIfNeeded", () => {

171174

refreshQueuedFollowupSessionMock.mockReset();

172175

ensureMemoryFlushTargetFileMock.mockReset().mockResolvedValue(undefined);

173176

ensureSelectedAgentHarnessPluginMock.mockReset().mockResolvedValue(undefined);

177+

emitAgentEventMock.mockReset();

174178

incrementCompactionCountMock.mockReset().mockImplementation(async (params) => {

175179

const sessionKey = String(params.sessionKey ?? "");

176180

if (!sessionKey || !params.sessionStore?.[sessionKey]) {

@@ -208,6 +212,7 @@ describe("runMemoryFlushIfNeeded", () => {

208212

incrementCompactionCount: incrementCompactionCountMock as never,

209213

ensureSelectedAgentHarnessPlugin: ensureSelectedAgentHarnessPluginMock as never,

210214

registerAgentRunContext: vi.fn() as never,

215+

emitAgentEvent: emitAgentEventMock as never,

211216

randomUUID: () => "00000000-0000-0000-0000-000000000001",

212217

now: () => 1_700_000_000_000,

213218

});

@@ -489,6 +494,236 @@ describe("runMemoryFlushIfNeeded", () => {

489494

expect(visibleErrorPayloads).toEqual([]);

490495

});

491496497+

it("increments memoryFlushFailureCount on non-abort flush failure", async () => {

498+

const storePath = path.join(rootDir, "sessions.json");

499+

const sessionEntry: SessionEntry = {

500+

sessionId: "session",

501+

updatedAt: Date.now(),

502+

totalTokens: 80_000,

503+

compactionCount: 1,

504+

};

505+

await writeTestSessionStore(storePath, "main", sessionEntry);

506+

runWithModelFallbackMock.mockRejectedValueOnce(new Error("provider crashed during flush"));

507+508+

await runMemoryFlushIfNeeded({

509+

cfg: { agents: { defaults: { compaction: { memoryFlush: {} } } } },

510+

followupRun: createTestFollowupRun(),

511+

sessionCtx: { Provider: "whatsapp" } as unknown as TemplateContext,

512+

defaultModel: "anthropic/claude-opus-4-7",

513+

agentCfgContextTokens: 100_000,

514+

resolvedVerboseLevel: "off",

515+

sessionEntry,

516+

sessionStore: { main: sessionEntry },

517+

sessionKey: "main",

518+

storePath,

519+

isHeartbeat: false,

520+

replyOperation: createReplyOperation(),

521+

});

522+523+

const persisted = JSON.parse(await fs.readFile(storePath, "utf8")) as { main: SessionEntry };

524+

expect(persisted.main.memoryFlushFailureCount).toBe(1);

525+

expect(persisted.main.memoryFlushLastFailedAt).toBe(1_700_000_000_000);

526+

expect(persisted.main.memoryFlushLastFailureError).toContain("provider crashed during flush");

527+

expect(emitAgentEventMock).toHaveBeenCalledWith(

528+

expect.objectContaining({

529+

stream: "lifecycle",

530+

data: expect.objectContaining({

531+

phase: "memory_flush_failed",

532+

attempt: 1,

533+

maxAttempts: TEST_MAX_FLUSH_FAILURES,

534+

}),

535+

}),

536+

);

537+

});

538+539+

it("does not track failure on abort error", async () => {

540+

const storePath = path.join(rootDir, "sessions.json");

541+

const sessionEntry: SessionEntry = {

542+

sessionId: "session",

543+

updatedAt: Date.now(),

544+

totalTokens: 80_000,

545+

compactionCount: 1,

546+

memoryFlushFailureCount: 0,

547+

};

548+

await writeTestSessionStore(storePath, "main", sessionEntry);

549+

const abortErr = new Error("operation aborted by user");

550+

abortErr.name = "AbortError";

551+

runWithModelFallbackMock.mockRejectedValueOnce(abortErr);

552+553+

await runMemoryFlushIfNeeded({

554+

cfg: { agents: { defaults: { compaction: { memoryFlush: {} } } } },

555+

followupRun: createTestFollowupRun(),

556+

sessionCtx: { Provider: "whatsapp" } as unknown as TemplateContext,

557+

defaultModel: "anthropic/claude-opus-4-7",

558+

agentCfgContextTokens: 100_000,

559+

resolvedVerboseLevel: "off",

560+

sessionEntry,

561+

sessionStore: { main: sessionEntry },

562+

sessionKey: "main",

563+

storePath,

564+

isHeartbeat: false,

565+

replyOperation: createReplyOperation(),

566+

});

567+568+

const persisted = JSON.parse(await fs.readFile(storePath, "utf8")) as { main: SessionEntry };

569+

expect(persisted.main.memoryFlushFailureCount).toBe(0);

570+

expect(persisted.main.memoryFlushLastFailedAt).toBeUndefined();

571+

expect(persisted.main.memoryFlushLastFailureError).toBeUndefined();

572+

});

573+574+

it("clears failure counters on successful flush", async () => {

575+

const storePath = path.join(rootDir, "sessions.json");

576+

const sessionEntry: SessionEntry = {

577+

sessionId: "session",

578+

updatedAt: Date.now(),

579+

totalTokens: 80_000,

580+

compactionCount: 1,

581+

memoryFlushFailureCount: 2,

582+

memoryFlushLastFailedAt: 1_699_999_999_000,

583+

memoryFlushLastFailureError: "provider crashed during flush",

584+

};

585+

await writeTestSessionStore(storePath, "main", sessionEntry);

586+587+

await runMemoryFlushIfNeeded({

588+

cfg: { agents: { defaults: { compaction: { memoryFlush: {} } } } },

589+

followupRun: createTestFollowupRun(),

590+

sessionCtx: { Provider: "whatsapp" } as unknown as TemplateContext,

591+

defaultModel: "anthropic/claude-opus-4-7",

592+

agentCfgContextTokens: 100_000,

593+

resolvedVerboseLevel: "off",

594+

sessionEntry,

595+

sessionStore: { main: sessionEntry },

596+

sessionKey: "main",

597+

storePath,

598+

isHeartbeat: false,

599+

replyOperation: createReplyOperation(),

600+

});

601+602+

const persisted = JSON.parse(await fs.readFile(storePath, "utf8")) as { main: SessionEntry };

603+

expect(persisted.main.memoryFlushFailureCount).toBe(0);

604+

expect(persisted.main.memoryFlushLastFailedAt).toBeUndefined();

605+

expect(persisted.main.memoryFlushLastFailureError).toBeUndefined();

606+

});

607+608+

it("marks flush as completed after MAX_FLUSH_FAILURES to break retry loop", async () => {

609+

const storePath = path.join(rootDir, "sessions.json");

610+

const sessionEntry: SessionEntry = {

611+

sessionId: "session",

612+

updatedAt: Date.now(),

613+

totalTokens: 80_000,

614+

compactionCount: 1,

615+

memoryFlushFailureCount: TEST_MAX_FLUSH_FAILURES - 1,

616+

};

617+

await writeTestSessionStore(storePath, "main", sessionEntry);

618+

runWithModelFallbackMock.mockRejectedValueOnce(new Error("provider crashed during flush"));

619+620+

const visibleErrorPayloads: ReplyPayload[] = [];

621+

await runMemoryFlushIfNeeded({

622+

cfg: { agents: { defaults: { compaction: { memoryFlush: {} } } } },

623+

followupRun: createTestFollowupRun(),

624+

sessionCtx: { Provider: "whatsapp" } as unknown as TemplateContext,

625+

defaultModel: "anthropic/claude-opus-4-7",

626+

agentCfgContextTokens: 100_000,

627+

resolvedVerboseLevel: "off",

628+

sessionEntry,

629+

sessionStore: { main: sessionEntry },

630+

sessionKey: "main",

631+

storePath,

632+

isHeartbeat: false,

633+

replyOperation: createReplyOperation(),

634+

onVisibleErrorPayloads: (payloads) => {

635+

visibleErrorPayloads.push(...payloads);

636+

},

637+

});

638+639+

const persisted = JSON.parse(await fs.readFile(storePath, "utf8")) as { main: SessionEntry };

640+

expect(persisted.main.memoryFlushCompactionCount).toBe(1);

641+

expect(persisted.main.memoryFlushFailureCount).toBe(TEST_MAX_FLUSH_FAILURES);

642+

expect(emitAgentEventMock).toHaveBeenCalledWith(

643+

expect.objectContaining({

644+

stream: "lifecycle",

645+

data: expect.objectContaining({

646+

phase: "memory_flush_exhausted",

647+

attempt: TEST_MAX_FLUSH_FAILURES,

648+

maxAttempts: TEST_MAX_FLUSH_FAILURES,

649+

}),

650+

}),

651+

);

652+

expect(visibleErrorPayloads[0]).toEqual(

653+

expect.objectContaining({

654+

text: expect.stringContaining("skipping for this cycle"),

655+

isError: true,

656+

}),

657+

);

658+

});

659+660+

it("retries flush on subsequent messages until MAX_FLUSH_FAILURES", async () => {

661+

const storePath = path.join(rootDir, "sessions.json");

662+

const sessionEntry: SessionEntry = {

663+

sessionId: "session",

664+

updatedAt: Date.now(),

665+

totalTokens: 80_000,

666+

compactionCount: 1,

667+

};

668+

await writeTestSessionStore(storePath, "main", sessionEntry);

669+

runWithModelFallbackMock.mockRejectedValue(new Error("provider crashed during flush"));

670+671+

const params = {

672+

cfg: { agents: { defaults: { compaction: { memoryFlush: {} } } } },

673+

followupRun: createTestFollowupRun(),

674+

sessionCtx: { Provider: "whatsapp" } as unknown as TemplateContext,

675+

defaultModel: "anthropic/claude-opus-4-7",

676+

agentCfgContextTokens: 100_000,

677+

resolvedVerboseLevel: "off" as const,

678+

sessionEntry,

679+

sessionStore: { main: sessionEntry },

680+

sessionKey: "main",

681+

storePath,

682+

isHeartbeat: false,

683+

replyOperation: createReplyOperation(),

684+

};

685+686+

await runMemoryFlushIfNeeded(params);

687+

await runMemoryFlushIfNeeded({ ...params, replyOperation: createReplyOperation() });

688+689+

expect(runWithModelFallbackMock).toHaveBeenCalledTimes(2);

690+691+

const persisted = JSON.parse(await fs.readFile(storePath, "utf8")) as { main: SessionEntry };

692+

expect(persisted.main.memoryFlushFailureCount).toBe(2);

693+

});

694+695+

it("next message retries flush after failure", async () => {

696+

const storePath = path.join(rootDir, "sessions.json");

697+

const sessionEntry: SessionEntry = {

698+

sessionId: "session",

699+

updatedAt: Date.now(),

700+

totalTokens: 80_000,

701+

compactionCount: 1,

702+

};

703+

await writeTestSessionStore(storePath, "main", sessionEntry);

704+

runWithModelFallbackMock.mockRejectedValueOnce(new Error("provider crashed during flush"));

705+706+

const params = {

707+

cfg: { agents: { defaults: { compaction: { memoryFlush: {} } } } },

708+

followupRun: createTestFollowupRun(),

709+

sessionCtx: { Provider: "whatsapp" } as unknown as TemplateContext,

710+

defaultModel: "anthropic/claude-opus-4-7",

711+

agentCfgContextTokens: 100_000,

712+

resolvedVerboseLevel: "off" as const,

713+

sessionEntry,

714+

sessionStore: { main: sessionEntry },

715+

sessionKey: "main",

716+

storePath,

717+

isHeartbeat: false,

718+

replyOperation: createReplyOperation(),

719+

};

720+721+

await runMemoryFlushIfNeeded(params);

722+

await runMemoryFlushIfNeeded({ ...params, replyOperation: createReplyOperation() });

723+724+

expect(runWithModelFallbackMock).toHaveBeenCalledTimes(2);

725+

});

726+492727

it("runs memory flush on the configured maintenance model without active fallbacks", async () => {

493728

registerMemoryFlushPlanResolverForTest(() => ({

494729

softThresholdTokens: 4_000,