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

推荐订阅源

Jina AI
Jina AI
S
SegmentFault 最新的问题
D
DataBreaches.Net
H
Help Net Security
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Martin Fowler
Martin Fowler
IT之家
IT之家
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
罗磊的独立博客
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
云风的 BLOG
云风的 BLOG
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
Vercel News
Vercel News
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
博客园 - 三生石上(FineUI控件)

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 parallels host timeouts · openclaw/op...
vincentkoc · 2026-06-22 · via Recent Commits to openclaw:main

@@ -4,6 +4,10 @@ import { createWriteStream } from "node:fs";

44

import path from "node:path";

55

import { finished } from "node:stream/promises";

66

import { fileURLToPath } from "node:url";

7+

import {

8+

addTimerTimeoutGraceMs,

9+

clampTimerTimeoutMs,

10+

} from "@openclaw/normalization-core/number-coercion";

711

import { resolveNpmRunner } from "../../npm-runner.mjs";

812

import { resolvePnpmRunner } from "../../pnpm-runner.mjs";

913

import { buildCmdExeCommandLine, resolveWindowsCmdExePath } from "../../windows-cmd-helpers.mjs";

@@ -338,6 +342,14 @@ function isBareCommand(command: string, name: "npm" | "pnpm"): boolean {

338342

return portableBasename(command) === command && command.toLowerCase() === name;

339343

}

340344345+

function resolveHostCommandTimeoutMs(timeoutMs: number): number {

346+

return clampTimerTimeoutMs(timeoutMs) ?? 1;

347+

}

348+349+

function resolveOptionalHostCommandTimeoutMs(timeoutMs: number | undefined): number | undefined {

350+

return timeoutMs === undefined ? undefined : resolveHostCommandTimeoutMs(timeoutMs);

351+

}

352+341353

export function resolveHostCommandInvocation(

342354

command: string,

343355

args: string[],

@@ -387,9 +399,10 @@ export function resolveHostCommandInvocation(

387399

export function run(command: string, args: string[], options: RunOptions = {}): CommandResult {

388400

const env = { ...process.env, ...options.env };

389401

const invocation = resolveHostCommandInvocation(command, args, { env });

390-

const usesPosixTimedWrapper = process.platform !== "win32" && options.timeoutMs !== undefined;

402+

const timeoutMs = resolveOptionalHostCommandTimeoutMs(options.timeoutMs);

403+

const usesPosixTimedWrapper = process.platform !== "win32" && timeoutMs !== undefined;

391404

const result = usesPosixTimedWrapper

392-

? runPosixTimedCommandSync(invocation, env, options)

405+

? runPosixTimedCommandSync(invocation, env, options, timeoutMs)

393406

: spawnSync(invocation.command, invocation.args, {

394407

cwd: options.cwd ?? repoRoot,

395408

encoding: "utf8",

@@ -399,7 +412,7 @@ export function run(command: string, args: string[], options: RunOptions = {}):

399412

maxBuffer: HOST_COMMAND_MAX_BUFFER_BYTES,

400413

stdio: options.quiet ? ["pipe", "pipe", "pipe"] : ["pipe", "pipe", "pipe"],

401414

shell: invocation.shell,

402-

timeout: options.timeoutMs,

415+

timeout: timeoutMs,

403416

windowsVerbatimArguments: invocation.windowsVerbatimArguments,

404417

});

405418

@@ -421,7 +434,7 @@ export function run(command: string, args: string[], options: RunOptions = {}):

421434

wrapperTimedOut || (result.error as NodeJS.ErrnoException | undefined)?.code === "ETIMEDOUT";

422435

if (wrapperTimedOut && options.check !== false) {

423436

const error = new Error(

424-

`${command} ${args.join(" ")} timed out after ${options.timeoutMs}ms`,

437+

`${command} ${args.join(" ")} timed out after ${timeoutMs}ms`,

425438

) as NodeJS.ErrnoException;

426439

error.code = "ETIMEDOUT";

427440

throw error;

@@ -495,7 +508,9 @@ function runPosixTimedCommandSync(

495508

invocation: HostCommandInvocation,

496509

env: NodeJS.ProcessEnv,

497510

options: RunOptions,

511+

timeoutMs: number,

498512

): SpawnSyncReturns<string> {

513+

const wrapperTimeoutMs = addTimerTimeoutGraceMs(timeoutMs, HOST_COMMAND_WRAPPER_BACKSTOP_MS) ?? 1;

499514

const payload = JSON.stringify({

500515

args: invocation.args,

501516

command: invocation.command,

@@ -505,7 +520,7 @@ function runPosixTimedCommandSync(

505520

maxBufferBytes: HOST_COMMAND_MAX_BUFFER_BYTES,

506521

shell: invocation.shell,

507522

timeoutKillGraceMs: HOST_COMMAND_TIMEOUT_KILL_GRACE_MS,

508-

timeoutMs: options.timeoutMs,

523+

timeoutMs,

509524

});

510525

return spawnSync(process.execPath, ["-e", POSIX_TIMEOUT_WRAPPER], {

511526

cwd: options.cwd ?? repoRoot,

@@ -515,7 +530,7 @@ function runPosixTimedCommandSync(

515530

killSignal: "SIGKILL",

516531

maxBuffer: HOST_COMMAND_MAX_BUFFER_BYTES * 2 + HOST_COMMAND_WRAPPER_EXTRA_BUFFER_BYTES,

517532

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

518-

timeout: (options.timeoutMs ?? 0) + HOST_COMMAND_WRAPPER_BACKSTOP_MS,

533+

timeout: wrapperTimeoutMs,

519534

});

520535

}

521536

@@ -531,11 +546,12 @@ export async function runStreaming(

531546

return await new Promise((resolve, reject) => {

532547

const env = { ...process.env, ...options.env };

533548

const invocation = resolveHostCommandInvocation(command, args, { env });

549+

const timeoutMs = resolveOptionalHostCommandTimeoutMs(options.timeoutMs);

534550

const logStream = options.logPath

535551

? createWriteStream(options.logPath, { encoding: "utf8", flags: "w" })

536552

: undefined;

537553

let logStreamError: Error | undefined;

538-

const detached = process.platform !== "win32" && options.timeoutMs != null;

554+

const detached = process.platform !== "win32" && timeoutMs !== undefined;

539555

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

540556

cwd: options.cwd ?? repoRoot,

541557

detached,

@@ -570,8 +586,8 @@ export async function runStreaming(

570586

return (error as NodeJS.ErrnoException).code === "EPERM";

571587

}

572588

};

573-

const waitForStreamingProcessGroupExit = async (timeoutMs: number): Promise<boolean> => {

574-

const deadlineAt = Date.now() + timeoutMs;

589+

const waitForStreamingProcessGroupExit = async (timeoutBudgetMs: number): Promise<boolean> => {

590+

const deadlineAt = Date.now() + timeoutBudgetMs;

575591

while (Date.now() < deadlineAt) {

576592

if (!streamingProcessGroupAlive()) {

577593

return true;

@@ -637,7 +653,7 @@ export async function runStreaming(

637653

}

638654

}, HOST_COMMAND_TIMEOUT_KILL_GRACE_MS);

639655

};

640-

if (process.platform !== "win32" && options.timeoutMs != null) {

656+

if (process.platform !== "win32" && timeoutMs !== undefined) {

641657

for (const signal of ["SIGHUP", "SIGINT", "SIGTERM"] as const) {

642658

const handler = (): void => {

643659

forwardedParentSignal ??= signal;

@@ -702,7 +718,7 @@ export async function runStreaming(

702718

}

703719

};

704720

const timer =

705-

options.timeoutMs == null

721+

timeoutMs === undefined

706722

? undefined

707723

: setTimeout(() => {

708724

timedOut = true;

@@ -713,7 +729,7 @@ export async function runStreaming(

713729

HOST_COMMAND_STREAMING_TIMEOUT_KILL_GRACE_MS,

714730

);

715731

killTimer.unref();

716-

}, options.timeoutMs);

732+

}, timeoutMs);

717733718734

child.on("error", (error) => {

719735

if (timer) {