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

推荐订阅源

A
About on SuperTechFans
小众软件
小众软件
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
博客园 - 三生石上(FineUI控件)
博客园_首页
N
Netflix TechBlog - Medium
IT之家
IT之家
H
Help Net Security
博客园 - 聂微东
Google DeepMind News
Google DeepMind News
罗磊的独立博客
T
Tailwind CSS Blog
F
Fortinet All Blogs
Hugging Face - Blog
Hugging Face - Blog
MongoDB | Blog
MongoDB | Blog
V
V2EX
量子位
云风的 BLOG
云风的 BLOG
爱范儿
爱范儿
博客园 - 司徒正美
The Cloudflare Blog
Engineering at Meta
Engineering at Meta

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(signal): handle attachment and SSE regressions · open...
steipete · 2026-04-30 · via Recent Commits to openclaw:main

@@ -7,6 +7,7 @@ import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";

77

export type SignalRpcOptions = {

88

baseUrl: string;

99

timeoutMs?: number;

10+

maxResponseBytes?: number;

1011

};

11121213

export type SignalRpcError = {

@@ -29,7 +30,7 @@ export type SignalSseEvent = {

2930

};

30313132

const DEFAULT_TIMEOUT_MS = 10_000;

32-

const MAX_SIGNAL_HTTP_RESPONSE_BYTES = 1_048_576;

33+

const DEFAULT_SIGNAL_HTTP_RESPONSE_MAX_BYTES = 1_048_576;

3334

const MAX_SIGNAL_SSE_BUFFER_BYTES = 1_048_576;

3435

const MAX_SIGNAL_SSE_EVENT_DATA_BYTES = 1_048_576;

3536

@@ -94,13 +95,28 @@ function assertSignalHttpProtocol(url: URL, label: string): void {

9495

}

9596

}

969798+

function normalizeSignalHttpResponseMaxBytes(value: number | undefined): number {

99+

if (typeof value !== "number" || !Number.isFinite(value) || value <= 0) {

100+

return DEFAULT_SIGNAL_HTTP_RESPONSE_MAX_BYTES;

101+

}

102+

return Math.floor(value);

103+

}

104+105+

function normalizeSignalSseTimeoutMs(timeoutMs: number): number | null {

106+

if (!Number.isFinite(timeoutMs) || timeoutMs <= 0) {

107+

return null;

108+

}

109+

return timeoutMs;

110+

}

111+97112

function requestSignalHttpText(

98113

url: URL,

99114

options: {

100115

method: "GET" | "POST";

101116

headers?: Record<string, string>;

102117

body?: string;

103118

timeoutMs: number;

119+

maxResponseBytes?: number;

104120

},

105121

): Promise<SignalHttpResponse> {

106122

assertSignalHttpProtocol(url, "HTTP");

@@ -132,6 +148,7 @@ function requestSignalHttpText(

132148

cleanup();

133149

resolve(response);

134150

};

151+

const maxResponseBytes = normalizeSignalHttpResponseMaxBytes(options.maxResponseBytes);

135152

request = client.request(

136153

url,

137154

{

@@ -144,7 +161,7 @@ function requestSignalHttpText(

144161

res.on("data", (chunk: Buffer | string) => {

145162

const next = typeof chunk === "string" ? Buffer.from(chunk) : chunk;

146163

totalBytes += next.byteLength;

147-

if (totalBytes > MAX_SIGNAL_HTTP_RESPONSE_BYTES) {

164+

if (totalBytes > maxResponseBytes) {

148165

const error = new Error("Signal HTTP response exceeded size limit");

149166

request?.destroy(error);

150167

res.destroy(error);

@@ -194,6 +211,7 @@ export async function signalRpcRequest<T = unknown>(

194211

},

195212

body,

196213

timeoutMs: opts.timeoutMs ?? DEFAULT_TIMEOUT_MS,

214+

maxResponseBytes: opts.maxResponseBytes,

197215

});

198216

if (res.status === 201) {

199217

return undefined as T;

@@ -248,15 +266,23 @@ function openSignalEventStream(

248266

let response: IncomingMessage | undefined;

249267

let onAbort: () => void = () => {};

250268

let request: ClientRequest;

251-

const headerDeadline = setTimeout(() => {

252-

const error = new Error(`Signal SSE connection timed out after ${timeoutMs}ms`);

253-

response?.destroy(error);

254-

request.destroy(error);

255-

rejectOnce(error);

256-

}, timeoutMs);

257-

headerDeadline.unref?.();

269+

const effectiveTimeoutMs = normalizeSignalSseTimeoutMs(timeoutMs);

270+

const headerDeadline =

271+

effectiveTimeoutMs === null

272+

? undefined

273+

: setTimeout(() => {

274+

const error = new Error(

275+

`Signal SSE connection timed out after ${effectiveTimeoutMs}ms`,

276+

);

277+

response?.destroy(error);

278+

request.destroy(error);

279+

rejectOnce(error);

280+

}, effectiveTimeoutMs);

281+

headerDeadline?.unref?.();

258282

const cleanup = () => {

259-

clearTimeout(headerDeadline);

283+

if (headerDeadline) {

284+

clearTimeout(headerDeadline);

285+

}

260286

abortSignal?.removeEventListener("abort", onAbort);

261287

};

262288

const rejectOnce = (error: unknown) => {

@@ -284,7 +310,9 @@ function openSignalEventStream(

284310

res.destroy();

285311

return;

286312

}

287-

clearTimeout(headerDeadline);

313+

if (headerDeadline) {

314+

clearTimeout(headerDeadline);

315+

}

288316

settled = true;

289317

response = res;

290318

resolve({ response: res, cleanup });