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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
博客园 - 叶小钗
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
罗磊的独立博客
量子位
Jina AI
Jina AI
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
IT之家
IT之家
美团技术团队
雷峰网
雷峰网
爱范儿
爱范儿
S
SegmentFault 最新的问题
小众软件
小众软件
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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(agents): surface memory-flush errors safely · opencla...
steipete · 2026-05-13 · via Recent Commits to openclaw:main

@@ -334,6 +334,113 @@ describe("runMemoryFlushIfNeeded", () => {

334334

]);

335335

});

336336337+

it("surfaces generic non-abort memory-flush failures so cron meta.error is populated (regression: #80755)", async () => {

338+

const sessionEntry: SessionEntry = {

339+

sessionId: "session",

340+

updatedAt: Date.now(),

341+

totalTokens: 80_000,

342+

compactionCount: 1,

343+

};

344+

const visibleErrorPayloads: Array<{ text?: string; isError?: boolean }> = [];

345+

runWithModelFallbackMock.mockRejectedValueOnce(

346+

new Error("provider timed out after 60s while flushing memory"),

347+

);

348+349+

await runMemoryFlushIfNeeded({

350+

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

351+

followupRun: createTestFollowupRun(),

352+

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

353+

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

354+

agentCfgContextTokens: 100_000,

355+

resolvedVerboseLevel: "off",

356+

sessionEntry,

357+

sessionStore: { main: sessionEntry },

358+

sessionKey: "main",

359+

isHeartbeat: false,

360+

replyOperation: createReplyOperation(),

361+

onVisibleErrorPayloads: (payloads) => {

362+

visibleErrorPayloads.push(...payloads);

363+

},

364+

});

365+366+

expect(visibleErrorPayloads).toEqual([

367+

{

368+

text: "⚠️ provider timed out after 60s while flushing memory",

369+

isError: true,

370+

},

371+

]);

372+

});

373+374+

it("redacts and caps generic visible memory-flush failures before delivery", async () => {

375+

const sessionEntry: SessionEntry = {

376+

sessionId: "session",

377+

updatedAt: Date.now(),

378+

totalTokens: 80_000,

379+

compactionCount: 1,

380+

};

381+

const visibleErrorPayloads: Array<{ text?: string; isError?: boolean }> = [];

382+

const token = "sk-abcdefghijklmnopqrstuv";

383+

runWithModelFallbackMock.mockRejectedValueOnce(

384+

new Error(`provider failed with Authorization: Bearer ${token} ${"x".repeat(800)}`),

385+

);

386+387+

await runMemoryFlushIfNeeded({

388+

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

389+

followupRun: createTestFollowupRun(),

390+

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

391+

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

392+

agentCfgContextTokens: 100_000,

393+

resolvedVerboseLevel: "off",

394+

sessionEntry,

395+

sessionStore: { main: sessionEntry },

396+

sessionKey: "main",

397+

isHeartbeat: false,

398+

replyOperation: createReplyOperation(),

399+

onVisibleErrorPayloads: (payloads) => {

400+

visibleErrorPayloads.push(...payloads);

401+

},

402+

});

403+404+

const [payload] = visibleErrorPayloads;

405+

expect(payload?.isError).toBe(true);

406+

expect(payload?.text).toMatch(/^ provider failed with Authorization: Bearer /);

407+

expect(payload?.text).not.toContain(token);

408+

expect(payload?.text?.length).toBeLessThanOrEqual(600);

409+

expect(payload?.text?.endsWith("…")).toBe(true);

410+

});

411+412+

it("does not surface user-abort errors as visible payloads (regression: #80755)", async () => {

413+

const sessionEntry: SessionEntry = {

414+

sessionId: "session",

415+

updatedAt: Date.now(),

416+

totalTokens: 80_000,

417+

compactionCount: 1,

418+

};

419+

const visibleErrorPayloads: Array<{ text?: string; isError?: boolean }> = [];

420+

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

421+

abortErr.name = "AbortError";

422+

runWithModelFallbackMock.mockRejectedValueOnce(abortErr);

423+424+

await runMemoryFlushIfNeeded({

425+

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

426+

followupRun: createTestFollowupRun(),

427+

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

428+

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

429+

agentCfgContextTokens: 100_000,

430+

resolvedVerboseLevel: "off",

431+

sessionEntry,

432+

sessionStore: { main: sessionEntry },

433+

sessionKey: "main",

434+

isHeartbeat: false,

435+

replyOperation: createReplyOperation(),

436+

onVisibleErrorPayloads: (payloads) => {

437+

visibleErrorPayloads.push(...payloads);

438+

},

439+

});

440+441+

expect(visibleErrorPayloads).toEqual([]);

442+

});

443+337444

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

338445

registerMemoryFlushPlanResolverForTest(() => ({

339446

softThresholdTokens: 4_000,