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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Jina AI
Jina AI
The Cloudflare Blog
V
Visual Studio Blog
博客园_首页
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
博客园 - Franky

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): share streaming event envelopes · openclaw/...
samzong · 2026-05-11 · via Recent Commits to openclaw:main

@@ -19,13 +19,15 @@ import {

1919

DEFAULT_DANGEROUS_NODE_COMMANDS,

2020

resolveNodeCommandAllowlist,

2121

} from "./node-command-policy.js";

22+

import type { SerializedEventPayload } from "./node-registry.js";

2223

import type { RequestFrame } from "./protocol/index.js";

2324

import { createGatewayBroadcaster } from "./server-broadcast.js";

2425

import { createChatRunRegistry } from "./server-chat.js";

2526

import { MAX_BUFFERED_BYTES } from "./server-constants.js";

2627

import { handleNodeInvokeResult } from "./server-methods/nodes.handlers.invoke-result.js";

2728

import type { GatewayClient as GatewayMethodClient } from "./server-methods/types.js";

2829

import type { GatewayRequestContext, RespondFn } from "./server-methods/types.js";

30+

import { createGatewayNodeSessionRuntime } from "./server-node-session-runtime.js";

2931

import { createNodeSubscriptionManager } from "./server-node-subscriptions.js";

3032

import { formatError, normalizeVoiceWakeTriggers } from "./server-utils.js";

3133

import type { GatewayWsClient } from "./server/ws-types.js";

@@ -572,6 +574,47 @@ describe("gateway broadcaster", () => {

572574

]);

573575

});

574576577+

it("reuses the same payload shape while assigning per-client seq values", () => {

578+

const firstSocket = makeRecordingSocket();

579+

const secondSocket = makeRecordingSocket();

580+

const thirdSocket = makeRecordingSocket();

581+

const clients = new Set<GatewayWsClient>([

582+

makeGatewayWsClient("c-1", firstSocket, {

583+

role: "operator",

584+

scopes: ["operator.read"],

585+

} as GatewayWsClient["connect"]),

586+

makeGatewayWsClient("c-2", secondSocket, {

587+

role: "operator",

588+

scopes: ["operator.write"],

589+

} as GatewayWsClient["connect"]),

590+

makeGatewayWsClient("c-3", thirdSocket, {

591+

role: "operator",

592+

scopes: ["operator.admin"],

593+

} as GatewayWsClient["connect"]),

594+

]);

595+

const payloadKeys: string[] = [];

596+

const payload = {

597+

toJSON(key: string) {

598+

payloadKeys.push(key);

599+

return { foo: key };

600+

},

601+

};

602+603+

const { broadcast } = createGatewayBroadcaster({ clients });

604+

broadcast("talk.mode", { enabled: true });

605+

broadcast("chat", payload);

606+607+

expect(payloadKeys).toEqual(["payload"]);

608+

expect(firstSocket.sent.at(-1)?.payload).toEqual({ foo: "payload" });

609+

expect(secondSocket.sent.at(-1)?.payload).toEqual({ foo: "payload" });

610+

expect(thirdSocket.sent.at(-1)?.payload).toEqual({ foo: "payload" });

611+

expect([

612+

firstSocket.sent.at(-1)?.seq,

613+

secondSocket.sent.at(-1)?.seq,

614+

thirdSocket.sent.at(-1)?.seq,

615+

]).toEqual([1, 2, 2]);

616+

});

617+575618

it("preserves seq gaps when dropIfSlow skips an eligible broadcast", () => {

576619

const slowReadSocket = makeRecordingSocket();

577620

slowReadSocket.bufferedAmount = Number.MAX_SAFE_INTEGER;

@@ -708,10 +751,13 @@ describe("node subscription manager", () => {

708751

const sent: Array<{

709752

nodeId: string;

710753

event: string;

711-

payloadJSON?: string | null;

754+

payloadJSON?: SerializedEventPayload | null;

712755

}> = [];

713-

const sendEvent = (evt: { nodeId: string; event: string; payloadJSON?: string | null }) =>

714-

sent.push(evt);

756+

const sendEvent = (evt: {

757+

nodeId: string;

758+

event: string;

759+

payloadJSON?: SerializedEventPayload | null;

760+

}) => sent.push(evt);

715761716762

manager.subscribe("node-a", "main");

717763

manager.subscribe("node-b", "main");

@@ -722,6 +768,45 @@ describe("node subscription manager", () => {

722768

expect(sent[0].event).toBe("chat");

723769

});

724770771+

test("runtime forwards subscribed node payload json without parsing it again", () => {

772+

const frames: string[] = [];

773+

const socket: TestSocket = {

774+

bufferedAmount: 0,

775+

send: vi.fn((payload: string) => frames.push(payload)),

776+

close: vi.fn(),

777+

};

778+

const parseSpy = vi.spyOn(JSON, "parse");

779+

try {

780+

const runtime = createGatewayNodeSessionRuntime({ broadcast: vi.fn() });

781+

runtime.nodeRegistry.register(

782+

makeGatewayWsClient("conn-node-a", socket, {

783+

role: "node",

784+

scopes: [],

785+

client: {

786+

id: "node-client",

787+

version: "1.0.0",

788+

platform: "darwin",

789+

mode: "node",

790+

},

791+

device: { id: "node-a" },

792+

} as unknown as GatewayWsClient["connect"]),

793+

{},

794+

);

795+

runtime.nodeSubscribe("node-a", "main");

796+797+

runtime.nodeSendToSession("main", "chat", { ok: true });

798+799+

expect(parseSpy).not.toHaveBeenCalled();

800+

} finally {

801+

parseSpy.mockRestore();

802+

}

803+

expect(JSON.parse(frames[0] ?? "{}")).toEqual({

804+

type: "event",

805+

event: "chat",

806+

payload: { ok: true },

807+

});

808+

});

809+725810

test("unsubscribeAll clears session mappings", () => {

726811

const manager = createNodeSubscriptionManager();

727812

const sent: string[] = [];