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

推荐订阅源

博客园 - Franky
J
Java Code Geeks
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
博客园 - 司徒正美
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
L
LangChain Blog
WordPress大学
WordPress大学
A
About on SuperTechFans
Martin Fowler
Martin Fowler
月光博客
月光博客
Y
Y Combinator Blog
U
Unit 42
D
Docker
Recent Announcements
Recent Announcements
Hugging Face - Blog
Hugging Face - Blog
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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: yield diagnostic event drains (#82937) · openclaw/op...
galiniliev · 2026-05-20 · via Recent Commits to openclaw:main

@@ -3,11 +3,14 @@ import {

33

emitDiagnosticEvent,

44

emitTrustedDiagnosticEvent,

55

formatDiagnosticTraceparentForPropagation,

6+

hasPendingInternalDiagnosticEvent,

67

isDiagnosticsEnabled,

78

onInternalDiagnosticEvent,

89

onDiagnosticEvent,

910

resetDiagnosticEventsForTest,

1011

setDiagnosticsEnabledForProcess,

12+

waitForDiagnosticEventsDrained,

13+

type DiagnosticEventPayload,

1114

} from "./diagnostic-events.js";

1215

import {

1316

createDiagnosticTraceContext,

@@ -415,6 +418,224 @@ describe("diagnostic-events", () => {

415418

expect(events).toEqual(["tool.execution.started", "model.call.started"]);

416419

});

417420421+

it("yields between large high-frequency diagnostic event bursts", async () => {

422+

const events: string[] = [];

423+

onDiagnosticEvent((event) => {

424+

events.push(event.type);

425+

});

426+427+

for (let index = 0; index < 250; index += 1) {

428+

emitDiagnosticEvent({

429+

type: "model.call.started",

430+

runId: `run-${index}`,

431+

callId: `call-${index}`,

432+

provider: "openai",

433+

model: "gpt-5.4",

434+

});

435+

}

436+437+

expect(events).toStrictEqual([]);

438+

await new Promise<void>((resolve) => setImmediate(resolve));

439+

expect(events).toHaveLength(100);

440+

await new Promise<void>((resolve) => setImmediate(resolve));

441+

expect(events).toHaveLength(200);

442+

await new Promise<void>((resolve) => setImmediate(resolve));

443+

expect(events).toHaveLength(250);

444+

});

445+446+

it("waits for all queued high-frequency diagnostic events to drain", async () => {

447+

const events: string[] = [];

448+

onDiagnosticEvent((event) => {

449+

events.push(event.type);

450+

});

451+452+

for (let index = 0; index < 250; index += 1) {

453+

emitDiagnosticEvent({

454+

type: "model.call.started",

455+

runId: `run-${index}`,

456+

callId: `call-${index}`,

457+

provider: "openai",

458+

model: "gpt-5.4",

459+

});

460+

}

461+462+

await waitForDiagnosticEventsDrained();

463+464+

expect(events).toHaveLength(250);

465+

});

466+467+

it("reports pending async diagnostic events before they drain", async () => {

468+

emitTrustedDiagnosticEvent({

469+

type: "tool.execution.error",

470+

runId: "run-pending",

471+

toolName: "exec",

472+

toolCallId: "call-pending",

473+

durationMs: 1,

474+

errorCategory: "test",

475+

});

476+477+

expect(

478+

hasPendingInternalDiagnosticEvent(

479+

(event, metadata) =>

480+

metadata.trusted &&

481+

event.type === "tool.execution.error" &&

482+

event.toolCallId === "call-pending",

483+

),

484+

).toBe(true);

485+486+

await waitForDiagnosticEventsDrained();

487+488+

expect(

489+

hasPendingInternalDiagnosticEvent((event) => event.type === "tool.execution.error"),

490+

).toBe(false);

491+

});

492+493+

it("passes immutable pending diagnostic copies to queue inspectors", async () => {

494+

const events: DiagnosticEventPayload[] = [];

495+

onInternalDiagnosticEvent((event) => {

496+

events.push(event);

497+

});

498+499+

emitTrustedDiagnosticEvent({

500+

type: "tool.execution.error",

501+

runId: "run-immutable",

502+

toolName: "exec",

503+

toolCallId: "call-immutable",

504+

durationMs: 1,

505+

errorCategory: "test",

506+

});

507+508+

let mutationErrors = 0;

509+

expect(

510+

hasPendingInternalDiagnosticEvent((event, metadata) => {

511+

try {

512+

(event as { type: string }).type = "model.usage";

513+

} catch {

514+

mutationErrors += 1;

515+

}

516+

try {

517+

(metadata as { trusted: boolean }).trusted = false;

518+

} catch {

519+

mutationErrors += 1;

520+

}

521+

return (

522+

metadata.trusted &&

523+

event.type === "tool.execution.error" &&

524+

event.toolCallId === "call-immutable"

525+

);

526+

}),

527+

).toBe(true);

528+

expect(mutationErrors).toBe(2);

529+530+

await waitForDiagnosticEventsDrained();

531+532+

expect(events).toMatchObject([

533+

{

534+

type: "tool.execution.error",

535+

toolCallId: "call-immutable",

536+

},

537+

]);

538+

});

539+540+

it("skips uncloneable pending diagnostics during queue inspection", async () => {

541+

emitDiagnosticEvent({

542+

type: "model.call.started",

543+

runId: "run-uncloneable",

544+

callId: "call-uncloneable",

545+

provider: "openai",

546+

model: "gpt-5.4",

547+

badValue: () => undefined,

548+

} as never);

549+

emitTrustedDiagnosticEvent({

550+

type: "tool.execution.error",

551+

runId: "run-cloneable",

552+

toolName: "exec",

553+

toolCallId: "call-cloneable",

554+

durationMs: 1,

555+

errorCategory: "test",

556+

});

557+558+

expect(

559+

hasPendingInternalDiagnosticEvent(

560+

(event, metadata) =>

561+

metadata.trusted &&

562+

event.type === "tool.execution.error" &&

563+

event.toolCallId === "call-cloneable",

564+

),

565+

).toBe(true);

566+

});

567+568+

it("preserves trusted terminal tool diagnostics when the async queue is full", async () => {

569+

const events: DiagnosticEventPayload[] = [];

570+

onInternalDiagnosticEvent((event) => {

571+

events.push(event);

572+

});

573+574+

emitTrustedDiagnosticEvent({

575+

type: "tool.execution.completed",

576+

runId: "run-saturation-first",

577+

toolName: "exec",

578+

toolCallId: "call-saturation-first",

579+

durationMs: 1,

580+

});

581+582+

for (let index = 0; index < 9_999; index += 1) {

583+

emitDiagnosticEvent({

584+

type: "model.call.started",

585+

runId: `saturation-run-${index}`,

586+

callId: `saturation-call-${index}`,

587+

provider: "openai",

588+

model: "gpt-5.4",

589+

});

590+

}

591+592+

emitTrustedDiagnosticEvent({

593+

type: "tool.execution.error",

594+

runId: "run-saturation-second",

595+

toolName: "exec",

596+

toolCallId: "call-saturation-second",

597+

durationMs: 1,

598+

errorCategory: "test",

599+

});

600+601+

expect(

602+

hasPendingInternalDiagnosticEvent(

603+

(event, metadata) =>

604+

metadata.trusted &&

605+

event.type === "tool.execution.error" &&

606+

event.toolCallId === "call-saturation-second",

607+

),

608+

).toBe(true);

609+610+

await waitForDiagnosticEventsDrained();

611+612+

expect(

613+

events

614+

.filter(

615+

(

616+

event,

617+

): event is Extract<

618+

DiagnosticEventPayload,

619+

{ type: "tool.execution.completed" | "tool.execution.error" }

620+

> => event.type === "tool.execution.completed" || event.type === "tool.execution.error",

621+

)

622+

.map((event) => ({

623+

type: event.type,

624+

toolCallId: event.toolCallId,

625+

})),

626+

).toEqual([

627+

{

628+

type: "tool.execution.completed",

629+

toolCallId: "call-saturation-first",

630+

},

631+

{

632+

type: "tool.execution.error",

633+

toolCallId: "call-saturation-second",

634+

},

635+

]);

636+

expect(events.filter((event) => event.type === "model.call.started")).toHaveLength(9_998);

637+

});

638+418639

it("keeps log records off the public diagnostic event stream", async () => {

419640

const publicEvents: string[] = [];

420641

const internalEvents: string[] = [];