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

推荐订阅源

V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog
罗磊的独立博客
S
SegmentFault 最新的问题
D
Docker
博客园 - 司徒正美
雷峰网
雷峰网
V
Visual Studio Blog
云风的 BLOG
云风的 BLOG
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - Franky
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
The Blog of Author Tim Ferriss
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
MongoDB | Blog
MongoDB | 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(testing): reserve kitchen sink rpc ports · openclaw/o...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main

@@ -2,6 +2,7 @@

22

import childProcess from "node:child_process";

33

import { createHash } from "node:crypto";

44

import fs from "node:fs";

5+

import net from "node:net";

56

import os from "node:os";

67

import path from "node:path";

78

import process from "node:process";

@@ -30,7 +31,6 @@ const DEFAULT_MAX_COMMAND_RSS_MIB = 8192;

3031

const DEFAULT_OUTPUT_CAPTURE_CHARS = 1024 * 1024;

3132

const GATEWAY_TEARDOWN_GRACE_MS = 10000;

3233

const GATEWAY_TEARDOWN_KILL_GRACE_MS = 2000;

33-

const DEFAULT_PORT = 19000 + Math.floor(Math.random() * 1000);

3434

const LOG_SCAN_CHUNK_BYTES = 64 * 1024;

3535

const LOG_SCAN_MAX_LINE_CHARS = 16 * 1024;

3636

const LOG_TAIL_BYTES = 256 * 1024;

@@ -65,12 +65,17 @@ Environment:

6565

OPENCLAW_ENTRY Built OpenClaw entrypoint. Defaults to dist/index.mjs or dist/index.js.

6666

OPENCLAW_KITCHEN_SINK_NPM_SPEC Plugin package spec. Default: npm:@openclaw/kitchen-sink@latest.

6767

OPENCLAW_KITCHEN_SINK_PLUGIN_ID Plugin id. Default: openclaw-kitchen-sink-fixture.

68+

OPENCLAW_KITCHEN_SINK_PERSONALITY Plugin fixture personality. Default: conformance.

69+

OPENCLAW_KITCHEN_SINK_RPC_PORT Gateway loopback port. Default: OS-selected free port.

6870

OPENCLAW_KITCHEN_SINK_RPC_READY_MS Gateway readiness timeout.

6971

OPENCLAW_KITCHEN_SINK_RPC_COMMAND_MS OpenClaw command timeout.

7072

OPENCLAW_KITCHEN_SINK_RPC_INSTALL_MS Plugin install timeout.

7173

OPENCLAW_KITCHEN_SINK_RPC_CALL_MS RPC call timeout.

74+

OPENCLAW_KITCHEN_SINK_RPC_FETCH_MS HTTP readiness probe timeout.

75+

OPENCLAW_KITCHEN_SINK_RPC_FETCH_BODY_BYTES HTTP readiness probe response ceiling.

7276

OPENCLAW_KITCHEN_SINK_MAX_RSS_MIB Gateway RSS ceiling.

7377

OPENCLAW_KITCHEN_SINK_COMMAND_MAX_RSS_MIB Install/CLI command RSS ceiling.

78+

OPENCLAW_KITCHEN_SINK_OUTPUT_CAPTURE_CHARS Per-command stdout/stderr capture ceiling.

7479

OPENCLAW_KITCHEN_SINK_KEEP_TMP=1 Preserve the isolated temp home.

7580

`;

7681

}

@@ -145,6 +150,42 @@ export function resolveKitchenSinkRpcConfig(env = process.env) {

145150

};

146151

}

147152153+

export async function findAvailableLoopbackPort(options = {}) {

154+

const createServer = options.createServer ?? (() => net.createServer());

155+

const server = createServer();

156+

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

157+

const fail = (error) => {

158+

server.close?.(() => {});

159+

reject(toLintErrorObject(error, "Unable to reserve Kitchen Sink RPC loopback port"));

160+

};

161+

server.once("error", fail);

162+

server.listen(0, "127.0.0.1", () => {

163+

server.off?.("error", fail);

164+

const address = server.address();

165+

const port = typeof address === "object" && address ? address.port : 0;

166+

server.close((error) => {

167+

if (error) {

168+

reject(toLintErrorObject(error, "Unable to close Kitchen Sink RPC loopback port"));

169+

return;

170+

}

171+

if (!Number.isSafeInteger(port) || port <= 0) {

172+

reject(new Error(`unable to reserve Kitchen Sink RPC loopback port: ${String(port)}`));

173+

return;

174+

}

175+

resolve(port);

176+

});

177+

});

178+

});

179+

}

180+181+

export async function resolveKitchenSinkRpcPort(env = process.env, options = {}) {

182+

const rawPort = (env.OPENCLAW_KITCHEN_SINK_RPC_PORT || "").trim();

183+

if (rawPort) {

184+

return readPositiveInt(rawPort, 0, "OPENCLAW_KITCHEN_SINK_RPC_PORT");

185+

}

186+

return await (options.findAvailablePort ?? findAvailableLoopbackPort)();

187+

}

188+148189

function resolveOpenClawRunner() {

149190

if (process.env.OPENCLAW_ENTRY) {

150191

return {

@@ -2200,11 +2241,7 @@ function isNonEmptyString(value) {

22002241

export async function main() {

22012242

const config = resolveKitchenSinkRpcConfig();

22022243

let runner = resolveOpenClawRunner();

2203-

const port = readPositiveInt(

2204-

process.env.OPENCLAW_KITCHEN_SINK_RPC_PORT,

2205-

DEFAULT_PORT,

2206-

"OPENCLAW_KITCHEN_SINK_RPC_PORT",

2207-

);

2244+

const port = await resolveKitchenSinkRpcPort();

22082245

const { root, env } = makeEnv();

22092246

const logPath = path.join(root, "gateway.log");

22102247

const keepTmp = process.env.OPENCLAW_KITCHEN_SINK_KEEP_TMP === "1";