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

推荐订阅源

罗磊的独立博客
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
MyScale Blog
MyScale Blog
M
MIT News - Artificial intelligence
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Google DeepMind News
Google DeepMind News
C
Check Point Blog
Last Week in AI
Last Week in AI
F
Fortinet All Blogs
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
GbyAI
GbyAI
云风的 BLOG
云风的 BLOG

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(scripts): clamp kitchen sink timeouts · openclaw/open...
vincentkoc · 2026-06-22 · via Recent Commits to openclaw:main

@@ -34,6 +34,7 @@ const DEFAULT_FETCH_BODY_MAX_BYTES = 1024 * 1024;

3434

const DEFAULT_MAX_RSS_MIB = 2048;

3535

const DEFAULT_MAX_COMMAND_RSS_MIB = 8192;

3636

const DEFAULT_OUTPUT_CAPTURE_CHARS = 1024 * 1024;

37+

export const MAX_KITCHEN_SINK_TIMER_TIMEOUT_MS = 2_147_000_000;

3738

const GATEWAY_TEARDOWN_GRACE_MS = 10000;

3839

const GATEWAY_TEARDOWN_KILL_GRACE_MS = 2000;

3940

const COMMAND_PARENT_SIGNAL_KILL_GRACE_MS = 2000;

@@ -149,8 +150,19 @@ export function readPositiveInt(raw, fallback, label = "value") {

149150

return parsed;

150151

}

151152153+

export function clampKitchenSinkTimerTimeoutMs(value) {

154+

if (!Number.isFinite(value)) {

155+

return 1;

156+

}

157+

return Math.min(Math.max(1, Math.floor(value)), MAX_KITCHEN_SINK_TIMER_TIMEOUT_MS);

158+

}

159+160+

export function readPositiveTimerMs(raw, fallback, label = "value") {

161+

return clampKitchenSinkTimerTimeoutMs(readPositiveInt(raw, fallback, label));

162+

}

163+152164

export function resolveKitchenSinkRpcConfig(env = process.env) {

153-

const commandTimeoutMs = readPositiveInt(

165+

const commandTimeoutMs = readPositiveTimerMs(

154166

env.OPENCLAW_KITCHEN_SINK_RPC_COMMAND_MS,

155167

DEFAULT_COMMAND_TIMEOUT_MS,

156168

"OPENCLAW_KITCHEN_SINK_RPC_COMMAND_MS",

@@ -167,12 +179,12 @@ export function resolveKitchenSinkRpcConfig(env = process.env) {

167179

DEFAULT_FETCH_BODY_MAX_BYTES,

168180

"OPENCLAW_KITCHEN_SINK_RPC_FETCH_BODY_BYTES",

169181

),

170-

fetchTimeoutMs: readPositiveInt(

182+

fetchTimeoutMs: readPositiveTimerMs(

171183

env.OPENCLAW_KITCHEN_SINK_RPC_FETCH_MS,

172184

DEFAULT_FETCH_TIMEOUT_MS,

173185

"OPENCLAW_KITCHEN_SINK_RPC_FETCH_MS",

174186

),

175-

installTimeoutMs: readPositiveInt(

187+

installTimeoutMs: readPositiveTimerMs(

176188

env.OPENCLAW_KITCHEN_SINK_RPC_INSTALL_MS,

177189

Math.max(commandTimeoutMs, DEFAULT_INSTALL_TIMEOUT_MS),

178190

"OPENCLAW_KITCHEN_SINK_RPC_INSTALL_MS",

@@ -187,12 +199,12 @@ export function resolveKitchenSinkRpcConfig(env = process.env) {

187199

DEFAULT_OUTPUT_CAPTURE_CHARS,

188200

"OPENCLAW_KITCHEN_SINK_OUTPUT_CAPTURE_CHARS",

189201

),

190-

readyTimeoutMs: readPositiveInt(

202+

readyTimeoutMs: readPositiveTimerMs(

191203

env.OPENCLAW_KITCHEN_SINK_RPC_READY_MS,

192204

DEFAULT_READY_TIMEOUT_MS,

193205

"OPENCLAW_KITCHEN_SINK_RPC_READY_MS",

194206

),

195-

rpcTimeoutMs: readPositiveInt(

207+

rpcTimeoutMs: readPositiveTimerMs(

196208

env.OPENCLAW_KITCHEN_SINK_RPC_CALL_MS,

197209

DEFAULT_RPC_TIMEOUT_MS,

198210

"OPENCLAW_KITCHEN_SINK_RPC_CALL_MS",

@@ -360,6 +372,8 @@ export function runCommand(command, args, options = {}) {

360372

timeoutMs = config.commandTimeoutMs,

361373

...spawnOptions

362374

} = options;

375+

const resolvedTimeoutMs = clampKitchenSinkTimerTimeoutMs(timeoutMs);

376+

const resolvedTimeoutKillGraceMs = clampKitchenSinkTimerTimeoutMs(timeoutKillGraceMs);

363377

const child = childProcess.spawn(command, args, {

364378

stdio: ["ignore", "pipe", "pipe"],

365379

...spawnOptions,

@@ -426,10 +440,13 @@ export function runCommand(command, args, options = {}) {

426440

const timer = setTimeout(() => {

427441

timedOut = true;

428442

signalProcessGroup(child, "SIGTERM");

429-

forceKillAt = Date.now() + timeoutKillGraceMs;

430-

forceKillTimer = setTimeout(() => signalProcessGroup(child, "SIGKILL"), timeoutKillGraceMs);

443+

forceKillAt = Date.now() + resolvedTimeoutKillGraceMs;

444+

forceKillTimer = setTimeout(

445+

() => signalProcessGroup(child, "SIGKILL"),

446+

resolvedTimeoutKillGraceMs,

447+

);

431448

forceKillTimer.unref();

432-

}, timeoutMs);

449+

}, resolvedTimeoutMs);

433450

child.stdout?.on("data", (chunk) => {

434451

stdout = appendBoundedOutput(stdout, chunk, outputCaptureChars);

435452

});

@@ -473,7 +490,7 @@ export function runCommand(command, args, options = {}) {

473490

.join("\n")

474491

.trim();

475492

const failure = timedOut

476-

? `timed out after ${timeoutMs}ms`

493+

? `timed out after ${resolvedTimeoutMs}ms`

477494

: `failed with ${signal || status}`;

478495

reject(

479496

Object.assign(

@@ -494,7 +511,7 @@ export function runCommand(command, args, options = {}) {

494511

if (timedOut) {

495512

void finishTimedOutCommandProcessTree(child, {

496513

forceKillAt,

497-

timeoutKillGraceMs,

514+

timeoutKillGraceMs: resolvedTimeoutKillGraceMs,

498515

}).then(finish, finish);

499516

return;

500517

}

@@ -952,7 +969,7 @@ export function createRpcCliRunOptions(method, options = {}) {

952969

return {

953970

...options.commandResourceOptions,

954971

resourceLabel: `gateway call ${method}`,

955-

timeoutMs: config.rpcTimeoutMs + 30000,

972+

timeoutMs: clampKitchenSinkTimerTimeoutMs(config.rpcTimeoutMs + 30000),

956973

};

957974

}

958975

@@ -1034,7 +1051,7 @@ function isRetryableTransientNetworkError(error, seen = new Set()) {

10341051

export async function fetchJson(url, options = {}) {

10351052

const config = resolveKitchenSinkRpcConfig();

10361053

const attempts = Math.max(1, options.attempts ?? 3);

1037-

const timeoutMs = Math.max(1, options.timeoutMs ?? config.fetchTimeoutMs);

1054+

const timeoutMs = clampKitchenSinkTimerTimeoutMs(options.timeoutMs ?? config.fetchTimeoutMs);

10381055

const maxBodyBytes = Math.max(1, options.maxBodyBytes ?? config.fetchBodyMaxBytes);

10391056

const externalSignal = options.signal;

10401057

let lastError;

@@ -1434,7 +1451,7 @@ export async function waitForGatewayReady(child, port, logPath, options = {}) {

14341451

const config = resolveKitchenSinkRpcConfig();

14351452

const started = Date.now();

14361453

let lastError = "";

1437-

const timeoutMs = Math.max(1, options.timeoutMs ?? config.readyTimeoutMs);

1454+

const timeoutMs = clampKitchenSinkTimerTimeoutMs(options.timeoutMs ?? config.readyTimeoutMs);

14381455

const pollDelayMs = Math.max(1, options.pollDelayMs ?? 250);

14391456

const logReportedReady = createGatewayReadyLogScanner(logPath);

14401457

const childExit = createChildExitPromise(child);