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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
Engineering at Meta
Engineering at Meta
量子位
A
About on SuperTechFans
阮一峰的网络日志
阮一峰的网络日志
Recent Announcements
Recent Announcements
博客园 - 司徒正美
V
Visual Studio Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
腾讯CDC
Jina AI
Jina AI
C
Check Point Blog
H
Help Net Security
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
爱范儿
爱范儿
I
InfoQ

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(dev): cap Discord smoke response bodies · openclaw/op...
vincentkoc · 2026-05-30 · via Recent Commits to openclaw:main

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

1515

redactForDevToolLog,

1616

redactHomePath,

1717

} from "../lib/dev-tooling-safety.ts";

18+

import { readBoundedResponseText } from "../lib/bounded-response.ts";

18191920

function writeStdoutLine(message: string): void {

2021

process.stdout.write(`${message}\n`);

@@ -135,6 +136,7 @@ type FailureResult = {

135136

const DISCORD_API_BASE = "https://discord.com/api/v10";

136137

const DEFAULT_REQUEST_TIMEOUT_MS = 30_000;

137138

const DEFAULT_OPENCLAW_CLI_TIMEOUT_MS = 60_000;

139+

const DISCORD_RESPONSE_BODY_MAX_BYTES = 1024 * 1024;

138140

const WEBHOOK_CLEANUP_TIMEOUT_MS = 10_000;

139141140142

function sleep(ms: number): Promise<void> {

@@ -185,6 +187,41 @@ function parseNumber(value: string | undefined, fallback: number, label: string)

185187

return parseStrictIntegerOption({ fallback, label, min: 1, raw: value });

186188

}

187189190+

function createDiscordResponseTooLargeError(message: string): Error {

191+

const error = new Error(message);

192+

(error as NodeJS.ErrnoException).code = "ETOOBIG";

193+

return error;

194+

}

195+196+

function isTooLargeError(error: unknown): boolean {

197+

return (error as NodeJS.ErrnoException | undefined)?.code === "ETOOBIG";

198+

}

199+200+

async function readDiscordResponseText(params: {

201+

response: Response;

202+

label: string;

203+

signal: AbortSignal;

204+

maxBytes: number;

205+

}): Promise<string> {

206+

return await readBoundedResponseText(params.response, params.label, params.maxBytes, {

207+

createTooLargeError: createDiscordResponseTooLargeError,

208+

signal: params.signal,

209+

});

210+

}

211+212+

async function readDiscordResponseJson(params: {

213+

response: Response;

214+

label: string;

215+

signal: AbortSignal;

216+

maxBytes: number;

217+

}): Promise<unknown> {

218+

const text = await readDiscordResponseText(params);

219+

if (!text) {

220+

return {};

221+

}

222+

return JSON.parse(text);

223+

}

224+188225

function resolveStateDir(): string {

189226

const override = process.env.OPENCLAW_STATE_DIR?.trim();

190227

if (override) {

@@ -458,12 +495,14 @@ async function requestDiscordJson<T>(params: {

458495

retries?: number;

459496

timeoutMs?: number;

460497

errorPrefix: string;

498+

responseBodyMaxBytes?: number;

461499

fetchImpl?: typeof fetch;

462500

sleepImpl?: (ms: number) => Promise<void>;

463501

}): Promise<T> {

464502

const retries = params.retries ?? 6;

465503

const fetchImpl = params.fetchImpl ?? fetch;

466504

const sleepImpl = params.sleepImpl ?? sleep;

505+

const responseBodyMaxBytes = params.responseBodyMaxBytes ?? DISCORD_RESPONSE_BODY_MAX_BYTES;

467506

const deadlineMs = Date.now() + (params.timeoutMs ?? DEFAULT_REQUEST_TIMEOUT_MS);

468507

const timeoutError = () =>

469508

new Error(

@@ -488,7 +527,17 @@ async function requestDiscordJson<T>(params: {

488527

if (response.status === 429) {

489528

const bodyTimeoutMs = remainingTimeoutMs(deadlineMs);

490529

const body = (await withTimeout({

491-

operation: response.json().catch(() => ({})),

530+

operation: readDiscordResponseJson({

531+

response,

532+

label: `${params.errorPrefix} ${params.method} ${redactDiscordApiPath(params.path)}`,

533+

signal: controller.signal,

534+

maxBytes: responseBodyMaxBytes,

535+

}).catch((error) => {

536+

if (isTooLargeError(error)) {

537+

throw error;

538+

}

539+

return {};

540+

}),

492541

timeoutMs: bodyTimeoutMs,

493542

timeoutError,

494543

onTimeout: () => controller.abort(),

@@ -501,7 +550,12 @@ async function requestDiscordJson<T>(params: {

501550

if (!response.ok) {

502551

const bodyTimeoutMs = remainingTimeoutMs(deadlineMs);

503552

const text = await withTimeout({

504-

operation: response.text().catch(() => ""),

553+

operation: readDiscordResponseText({

554+

response,

555+

label: `${params.errorPrefix} ${params.method} ${redactDiscordApiPath(params.path)}`,

556+

signal: controller.signal,

557+

maxBytes: responseBodyMaxBytes,

558+

}),

505559

timeoutMs: bodyTimeoutMs,

506560

timeoutError,

507561

onTimeout: () => controller.abort(),

@@ -519,7 +573,12 @@ async function requestDiscordJson<T>(params: {

519573520574

const bodyTimeoutMs = remainingTimeoutMs(deadlineMs);

521575

return (await withTimeout({

522-

operation: response.json(),

576+

operation: readDiscordResponseJson({

577+

response,

578+

label: `${params.errorPrefix} ${params.method} ${redactDiscordApiPath(params.path)}`,

579+

signal: controller.signal,

580+

maxBytes: responseBodyMaxBytes,

581+

}),

523582

timeoutMs: bodyTimeoutMs,

524583

timeoutError,

525584

onTimeout: () => controller.abort(),

@@ -988,7 +1047,9 @@ async function main(): Promise<number> {

9881047

export const testing = {

9891048

parseDriverMode,

9901049

parseNumber,

1050+

DISCORD_RESPONSE_BODY_MAX_BYTES,

9911051

redactDiscordApiPath,

1052+

readDiscordResponseText,

9921053

remainingTimeoutMs,

9931054

requestDiscordJson,

9941055

resolveStateDir,