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

推荐订阅源

雷峰网
雷峰网
Y
Y Combinator Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
博客园_首页
J
Java Code Geeks
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
量子位
C
Check Point Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
N
Netflix TechBlog - Medium
Hugging Face - Blog
Hugging Face - Blog
B
Blog
美团技术团队
Microsoft Security Blog
Microsoft Security Blog
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
Last Week in AI
Last Week in AI

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 memory fd repro timers · openclaw/ope...
vincentkoc · 2026-06-22 · via Recent Commits to openclaw:main

@@ -27,6 +27,7 @@ const ISSUE_FILE_COUNTS = [

2727

const ISSUE_MEMORY_FILE_COUNT = ISSUE_FILE_COUNTS.reduce((sum, [, count]) => sum + count, 0);

2828

const DEFAULT_FILE_COUNT = 512;

2929

const DEFAULT_MAX_WORKSPACE_REG_FDS = process.platform === "darwin" ? 8 : 64;

30+

const MAX_TIMER_TIMEOUT_MS = 2_147_000_000;

3031

/**

3132

* Maximum gateway-ready output tail retained while waiting for startup.

3233

*/

@@ -134,6 +135,24 @@ function readPositiveNumberEnv(name, fallback) {

134135

return raw == null || raw.trim() === "" ? fallback : readPositiveNumber(raw, name);

135136

}

136137138+

function clampTimerTimeoutMs(valueMs, minMs = 1) {

139+

const min = Math.max(0, Math.floor(minMs));

140+

const value = Number.isFinite(valueMs) ? valueMs : min;

141+

return Math.min(Math.max(Math.floor(value), min), MAX_TIMER_TIMEOUT_MS);

142+

}

143+144+

function readTimerTimeoutNumber(value, label, minMs = 1) {

145+

const parsed = minMs > 0 ? readPositiveNumber(value, label) : readNumber(value, label);

146+

return clampTimerTimeoutMs(parsed, minMs);

147+

}

148+149+

function readTimerTimeoutNumberEnv(name, fallback, minMs = 1) {

150+

const raw = process.env[name];

151+

return raw == null || raw.trim() === ""

152+

? clampTimerTimeoutMs(fallback, minMs)

153+

: readTimerTimeoutNumber(raw, name, minMs);

154+

}

155+137156

/**

138157

* Parses memory FD repro CLI arguments and environment fallbacks.

139158

*/

@@ -192,13 +211,13 @@ export function parseArgs(argv) {

192211

options.minLeakedFds = readPositiveNumber(readValue(), "--min-leaked-fds");

193212

break;

194213

case "--invoke-timeout-ms":

195-

options.invokeTimeoutMs = readPositiveNumber(readValue(), "--invoke-timeout-ms");

214+

options.invokeTimeoutMs = readTimerTimeoutNumber(readValue(), "--invoke-timeout-ms");

196215

break;

197216

case "--sample-delay-ms":

198-

options.sampleDelayMs = readNumber(readValue(), "--sample-delay-ms");

217+

options.sampleDelayMs = readTimerTimeoutNumber(readValue(), "--sample-delay-ms", 0);

199218

break;

200219

case "--settle-delay-ms":

201-

options.settleDelayMs = readNumber(readValue(), "--settle-delay-ms");

220+

options.settleDelayMs = readTimerTimeoutNumber(readValue(), "--settle-delay-ms", 0);

202221

break;

203222

case "--output-dir":

204223

options.outputDir = path.resolve(readValue());

@@ -222,9 +241,17 @@ export function parseArgs(argv) {

222241

"OPENCLAW_MEMORY_FD_REPRO_MAX_WORKSPACE_REG_FDS",

223242

DEFAULT_MAX_WORKSPACE_REG_FDS,

224243

);

225-

options.invokeTimeoutMs ??= readPositiveNumberEnv("OPENCLAW_MEMORY_FD_REPRO_TIMEOUT_MS", 30_000);

226-

options.sampleDelayMs ??= readNumberEnv("OPENCLAW_MEMORY_FD_REPRO_SAMPLE_DELAY_MS", 1_000);

227-

options.settleDelayMs ??= readNumberEnv("OPENCLAW_MEMORY_FD_REPRO_SETTLE_DELAY_MS", 5_000);

244+

options.invokeTimeoutMs ??= readTimerTimeoutNumberEnv("OPENCLAW_MEMORY_FD_REPRO_TIMEOUT_MS", 30_000);

245+

options.sampleDelayMs ??= readTimerTimeoutNumberEnv(

246+

"OPENCLAW_MEMORY_FD_REPRO_SAMPLE_DELAY_MS",

247+

1_000,

248+

0,

249+

);

250+

options.settleDelayMs ??= readTimerTimeoutNumberEnv(

251+

"OPENCLAW_MEMORY_FD_REPRO_SETTLE_DELAY_MS",

252+

5_000,

253+

0,

254+

);

228255

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

229256

throw new Error("file count must be greater than 0");

230257

}

@@ -243,7 +270,7 @@ function logStep(message) {

243270244271

function sleep(ms) {

245272

return new Promise((resolve) => {

246-

setTimeout(resolve, ms);

273+

setTimeout(resolve, clampTimerTimeoutMs(ms, 0));

247274

});

248275

}

249276

@@ -676,9 +703,10 @@ export function classifyMemorySearchInvokeResponse({ httpOk, status, bodyText })

676703

};

677704

}

678705679-

async function invokeMemorySearch({ port, token, timeoutMs }) {

706+

export async function invokeMemorySearch({ port, token, timeoutMs }) {

707+

const resolvedTimeoutMs = clampTimerTimeoutMs(timeoutMs);

680708

const controller = new AbortController();

681-

const timer = setTimeout(() => controller.abort(), timeoutMs);

709+

const timer = setTimeout(() => controller.abort(), resolvedTimeoutMs);

682710

const startedAt = Date.now();

683711

try {

684712

const res = await fetch(`http://127.0.0.1:${port}/tools/invoke`, {