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

推荐订阅源

V
Visual Studio Blog
Y
Y Combinator Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
L
LangChain Blog
美团技术团队
N
Netflix TechBlog - Medium
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
博客园 - 司徒正美
爱范儿
爱范儿
D
DataBreaches.Net
月光博客
月光博客
U
Unit 42
B
Blog RSS Feed
Engineering at Meta
Engineering at Meta
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
MongoDB | Blog
MongoDB | Blog
腾讯CDC

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(update): authenticate restart health probes · opencla...
vincentkoc · 2026-05-05 · via Recent Commits to openclaw:main

@@ -1,6 +1,9 @@

11

import type { PluginHealthErrorSummary } from "../../commands/health.types.js";

2+

import { createConfigIO } from "../../config/io.js";

3+

import type { OpenClawConfig } from "../../config/types.openclaw.js";

24

import type { GatewayServiceRuntime } from "../../daemon/service-runtime.js";

35

import type { GatewayService } from "../../daemon/service.js";

6+

import { resolveGatewayProbeAuthSafeWithSecretInputs } from "../../gateway/probe-auth.js";

47

import { probeGateway } from "../../gateway/probe.js";

58

import {

69

classifyPortListener,

@@ -61,6 +64,11 @@ type GatewayReachability = {

6164

channelProbeErrors: Array<{ id: string; error: string }>;

6265

};

636667+

type GatewayRestartProbeAuth = {

68+

token?: string;

69+

password?: string;

70+

};

71+6472

function hasListenerAttributionGap(portUsage: PortUsage): boolean {

6573

if (portUsage.status !== "busy" || portUsage.listeners.length > 0) {

6674

return false;

@@ -228,9 +236,12 @@ function applyChannelProbeErrors(snapshot: GatewayRestartSnapshot): GatewayResta

228236

async function confirmGatewayReachable(params: {

229237

port: number;

230238

includeHealthDetails?: boolean;

239+

auth?: GatewayRestartProbeAuth;

231240

}): Promise<GatewayReachability> {

232-

const token = normalizeOptionalString(process.env.OPENCLAW_GATEWAY_TOKEN);

233-

const password = normalizeOptionalString(process.env.OPENCLAW_GATEWAY_PASSWORD);

241+

const token = normalizeOptionalString(params.auth?.token ?? process.env.OPENCLAW_GATEWAY_TOKEN);

242+

const password = normalizeOptionalString(

243+

params.auth?.password ?? process.env.OPENCLAW_GATEWAY_PASSWORD,

244+

);

234245

const probe = await probeGateway({

235246

url: `ws://127.0.0.1:${params.port}`,

236247

auth: token || password ? { token, password } : undefined,

@@ -251,13 +262,37 @@ async function confirmGatewayReachable(params: {

251262

};

252263

}

253264254-

async function inspectGatewayPortHealth(port: number): Promise<GatewayPortHealthSnapshot> {

265+

async function resolveGatewayRestartProbeAuth(

266+

env: NodeJS.ProcessEnv | undefined,

267+

): Promise<GatewayRestartProbeAuth | undefined> {

268+

const mergedEnv = {

269+

...(process.env as Record<string, string | undefined>),

270+

...(env ?? undefined),

271+

} as NodeJS.ProcessEnv;

272+

const cfg = await createConfigIO({

273+

env: mergedEnv,

274+

pluginValidation: "skip",

275+

})

276+

.readBestEffortConfig()

277+

.catch((): OpenClawConfig => ({}));

278+

const resolved = await resolveGatewayProbeAuthSafeWithSecretInputs({

279+

cfg,

280+

mode: "local",

281+

env: mergedEnv,

282+

});

283+

return resolved.auth;

284+

}

285+286+

async function inspectGatewayPortHealth(params: {

287+

port: number;

288+

auth?: GatewayRestartProbeAuth;

289+

}): Promise<GatewayPortHealthSnapshot> {

255290

let portUsage: PortUsage;

256291

try {

257-

portUsage = await inspectPortUsage(port);

292+

portUsage = await inspectPortUsage(params.port);

258293

} catch (err) {

259294

portUsage = {

260-

port,

295+

port: params.port,

261296

status: "unknown",

262297

listeners: [],

263298

hints: [],

@@ -268,7 +303,12 @@ async function inspectGatewayPortHealth(port: number): Promise<GatewayPortHealth

268303

let healthy = false;

269304

if (portUsage.status === "busy") {

270305

try {

271-

healthy = (await confirmGatewayReachable({ port })).reachable;

306+

healthy = (

307+

await confirmGatewayReachable({

308+

port: params.port,

309+

auth: params.auth,

310+

})

311+

).reachable;

272312

} catch {

273313

// best-effort probe

274314

}

@@ -283,6 +323,7 @@ export async function inspectGatewayRestart(params: {

283323

env?: NodeJS.ProcessEnv;

284324

expectedVersion?: string | null;

285325

includeUnknownListenersAsStale?: boolean;

326+

probeAuth?: GatewayRestartProbeAuth;

286327

}): Promise<GatewayRestartSnapshot> {

287328

const env = params.env ?? process.env;

288329

const expectedVersion = normalizeOptionalString(params.expectedVersion);

@@ -294,6 +335,7 @@ export async function inspectGatewayRestart(params: {

294335

reachability = await confirmGatewayReachable({

295336

port: params.port,

296337

includeHealthDetails: Boolean(expectedVersion),

338+

auth: params.probeAuth,

297339

});

298340

activatedPluginErrors = reachability.activatedPluginErrors;

299341

channelProbeErrors = reachability.channelProbeErrors;

@@ -477,12 +519,14 @@ export async function waitForGatewayHealthyRestart(params: {

477519

const attempts = params.attempts ?? DEFAULT_RESTART_HEALTH_ATTEMPTS;

478520

const delayMs = params.delayMs ?? DEFAULT_RESTART_HEALTH_DELAY_MS;

479521522+

const probeAuth = await resolveGatewayRestartProbeAuth(params.env).catch(() => undefined);

480523

let snapshot = await inspectGatewayRestart({

481524

service: params.service,

482525

port: params.port,

483526

env: params.env,

484527

expectedVersion: params.expectedVersion,

485528

includeUnknownListenersAsStale: params.includeUnknownListenersAsStale,

529+

probeAuth,

486530

});

487531488532

let consecutiveStoppedFreeCount = 0;

@@ -523,6 +567,7 @@ export async function waitForGatewayHealthyRestart(params: {

523567

env: params.env,

524568

expectedVersion: params.expectedVersion,

525569

includeUnknownListenersAsStale: params.includeUnknownListenersAsStale,

570+

probeAuth,

526571

});

527572

}

528573

@@ -537,14 +582,21 @@ export async function waitForGatewayHealthyListener(params: {

537582

const attempts = params.attempts ?? DEFAULT_RESTART_HEALTH_ATTEMPTS;

538583

const delayMs = params.delayMs ?? DEFAULT_RESTART_HEALTH_DELAY_MS;

539584540-

let snapshot = await inspectGatewayPortHealth(params.port);

585+

const probeAuth = await resolveGatewayRestartProbeAuth(undefined).catch(() => undefined);

586+

let snapshot = await inspectGatewayPortHealth({

587+

port: params.port,

588+

auth: probeAuth,

589+

});

541590542591

for (let attempt = 0; attempt < attempts; attempt += 1) {

543592

if (snapshot.healthy) {

544593

return snapshot;

545594

}

546595

await sleep(delayMs);

547-

snapshot = await inspectGatewayPortHealth(params.port);

596+

snapshot = await inspectGatewayPortHealth({

597+

port: params.port,

598+

auth: probeAuth,

599+

});

548600

}

549601550602

return snapshot;