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

推荐订阅源

Google DeepMind News
Google DeepMind News
L
LangChain Blog
H
Help Net Security
博客园_首页
T
Tailwind CSS Blog
Microsoft Security Blog
Microsoft Security Blog
T
The Blog of Author Tim Ferriss
雷峰网
雷峰网
Recent Announcements
Recent Announcements
D
DataBreaches.Net
U
Unit 42
Vercel News
Vercel News
I
InfoQ
Martin Fowler
Martin Fowler
Microsoft Azure Blog
Microsoft Azure Blog
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题
Jina AI
Jina AI
博客园 - 叶小钗
博客园 - 【当耐特】
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
Last Week in AI
Last Week in AI

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(gateway): preserve rpc abort terminal snapshots · ope...
clawsweeper · 2026-04-30 · via Recent Commits to openclaw:main

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

1212

resetTaskRegistryForTests,

1313

} from "../../tasks/task-registry.js";

1414

import { withTempDir } from "../../test-helpers/temp-dir.js";

15+

import { setGatewayDedupeEntry } from "./agent-wait-dedupe.js";

1516

import { agentHandlers } from "./agent.js";

1617

import { chatHandlers } from "./chat.js";

1718

import { expectSubagentFollowupReactivation } from "./subagent-followup.test-helpers.js";

@@ -1451,14 +1452,15 @@ describe("gateway agent handler", () => {

14511452

payloads: [],

14521453

meta: { durationMs: 100, aborted: true },

14531454

});

1455+

const context = makeContext();

1454145614551457

await invokeAgent(

14561458

{

14571459

message: "background cli task",

14581460

sessionKey: "agent:main:main",

14591461

idempotencyKey: "task-registry-agent-run-aborted",

14601462

},

1461-

{ reqId: "task-registry-agent-run-aborted" },

1463+

{ context, reqId: "task-registry-agent-run-aborted" },

14621464

);

1463146514641466

await waitForAssertion(() => {

@@ -1468,6 +1470,11 @@ describe("gateway agent handler", () => {

14681470

status: "timed_out",

14691471

terminalSummary: "aborted",

14701472

});

1473+

expect(context.dedupe.get("agent:task-registry-agent-run-aborted")?.payload).toMatchObject({

1474+

runId: "task-registry-agent-run-aborted",

1475+

status: "timeout",

1476+

summary: "aborted",

1477+

});

14711478

});

14721479

});

14731480

});

@@ -1480,14 +1487,15 @@ describe("gateway agent handler", () => {

14801487

const abortError = new Error("This operation was aborted");

14811488

abortError.name = "AbortError";

14821489

mocks.agentCommand.mockRejectedValueOnce(abortError);

1490+

const context = makeContext();

1483149114841492

await invokeAgent(

14851493

{

14861494

message: "background cli task",

14871495

sessionKey: "agent:main:main",

14881496

idempotencyKey: "task-registry-agent-run-abort-error",

14891497

},

1490-

{ reqId: "task-registry-agent-run-abort-error" },

1498+

{ context, reqId: "task-registry-agent-run-abort-error" },

14911499

);

1492150014931501

await waitForAssertion(() => {

@@ -1497,6 +1505,13 @@ describe("gateway agent handler", () => {

14971505

status: "timed_out",

14981506

error: "AbortError: This operation was aborted",

14991507

});

1508+

expect(

1509+

context.dedupe.get("agent:task-registry-agent-run-abort-error")?.payload,

1510+

).toMatchObject({

1511+

runId: "task-registry-agent-run-abort-error",

1512+

status: "timeout",

1513+

summary: "aborted",

1514+

});

15001515

});

15011516

});

15021517

});

@@ -2896,6 +2911,69 @@ describe("gateway agent handler chat.abort integration", () => {

28962911

expect(context.chatAbortControllers.has(runId)).toBe(false);

28972912

});

289829132914+

it("keeps the sessions.abort wait snapshot after late agent completion", async () => {

2915+

prime();

2916+

let capturedSignal: AbortSignal | undefined;

2917+

let resolveRun:

2918+

| ((value: { payloads: Array<{ text: string }>; meta: { durationMs: number } }) => void)

2919+

| undefined;

2920+

mocks.agentCommand.mockImplementationOnce((opts: { abortSignal?: AbortSignal }) => {

2921+

capturedSignal = opts.abortSignal;

2922+

return new Promise((resolve) => {

2923+

resolveRun = resolve;

2924+

});

2925+

});

2926+2927+

const context = makeContext();

2928+

const runId = "idem-abort-snapshot-wins";

2929+

await invokeAgent(

2930+

{

2931+

message: "hi",

2932+

agentId: "main",

2933+

sessionKey: "agent:main:main",

2934+

idempotencyKey: runId,

2935+

},

2936+

{ context, reqId: runId },

2937+

);

2938+2939+

const abortRespond = vi.fn();

2940+

await chatHandlers["chat.abort"]({

2941+

params: { sessionKey: "agent:main:main", runId },

2942+

respond: abortRespond as never,

2943+

context,

2944+

req: { type: "req", id: "abort-req", method: "chat.abort" },

2945+

client: null,

2946+

isWebchatConnect: () => false,

2947+

});

2948+

expect(capturedSignal?.aborted).toBe(true);

2949+2950+

setGatewayDedupeEntry({

2951+

dedupe: context.dedupe,

2952+

key: `agent:${runId}`,

2953+

entry: {

2954+

ts: 100,

2955+

ok: true,

2956+

payload: {

2957+

runId,

2958+

status: "timeout",

2959+

stopReason: "rpc",

2960+

endedAt: 100,

2961+

},

2962+

},

2963+

});

2964+2965+

resolveRun?.({ payloads: [{ text: "late ok" }], meta: { durationMs: 1 } });

2966+2967+

await waitForAssertion(() => {

2968+

expect(context.dedupe.get(`agent:${runId}`)?.payload).toMatchObject({

2969+

runId,

2970+

status: "timeout",

2971+

stopReason: "rpc",

2972+

endedAt: 100,

2973+

});

2974+

});

2975+

});

2976+28992977

it("chat.abort without runId aborts the active agent run for the sessionKey", async () => {

29002978

prime();

29012979

let capturedSignal: AbortSignal | undefined;