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

推荐订阅源

V
Visual Studio Blog
爱范儿
爱范儿
GbyAI
GbyAI
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
云风的 BLOG
云风的 BLOG
C
Check Point Blog
H
Help Net Security
P
Proofpoint News Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog RSS Feed
Y
Y Combinator Blog
U
Unit 42
T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
N
Netflix TechBlog - Medium
S
SegmentFault 最新的问题
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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): verify restarted gateway version · openclaw/...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

@@ -29,6 +29,12 @@ export type GatewayRestartSnapshot = {

2929

portUsage: PortUsage;

3030

healthy: boolean;

3131

staleGatewayPids: number[];

32+

gatewayVersion?: string | null;

33+

expectedVersion?: string;

34+

versionMismatch?: {

35+

expected: string;

36+

actual: string | null;

37+

};

3238

waitOutcome?: GatewayRestartWaitOutcome;

3339

elapsedMs?: number;

3440

};

@@ -38,6 +44,11 @@ export type GatewayPortHealthSnapshot = {

3844

healthy: boolean;

3945

};

404647+

type GatewayReachability = {

48+

reachable: boolean;

49+

gatewayVersion: string | null;

50+

};

51+4152

function hasListenerAttributionGap(portUsage: PortUsage): boolean {

4253

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

4354

return false;

@@ -69,7 +80,28 @@ function looksLikeAuthClose(code: number | undefined, reason: string | undefined

6980

);

7081

}

718272-

async function confirmGatewayReachable(port: number): Promise<boolean> {

83+

function applyExpectedVersion(

84+

snapshot: GatewayRestartSnapshot,

85+

expectedVersion: string | undefined,

86+

): GatewayRestartSnapshot {

87+

if (!expectedVersion) {

88+

return snapshot;

89+

}

90+

if (snapshot.gatewayVersion === expectedVersion) {

91+

return { ...snapshot, expectedVersion };

92+

}

93+

return {

94+

...snapshot,

95+

healthy: false,

96+

expectedVersion,

97+

versionMismatch: {

98+

expected: expectedVersion,

99+

actual: snapshot.gatewayVersion ?? null,

100+

},

101+

};

102+

}

103+104+

async function confirmGatewayReachable(port: number): Promise<GatewayReachability> {

73105

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

74106

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

75107

const probe = await probeGateway({

@@ -78,7 +110,10 @@ async function confirmGatewayReachable(port: number): Promise<boolean> {

78110

timeoutMs: 3_000,

79111

includeDetails: false,

80112

});

81-

return probe.ok || looksLikeAuthClose(probe.close?.code, probe.close?.reason);

113+

return {

114+

reachable: probe.ok || looksLikeAuthClose(probe.close?.code, probe.close?.reason),

115+

gatewayVersion: probe.server?.version ?? null,

116+

};

82117

}

8311884119

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

@@ -98,7 +133,7 @@ async function inspectGatewayPortHealth(port: number): Promise<GatewayPortHealth

98133

let healthy = false;

99134

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

100135

try {

101-

healthy = await confirmGatewayReachable(port);

136+

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

102137

} catch {

103138

// best-effort probe

104139

}

@@ -111,9 +146,16 @@ export async function inspectGatewayRestart(params: {

111146

service: GatewayService;

112147

port: number;

113148

env?: NodeJS.ProcessEnv;

149+

expectedVersion?: string | null;

114150

includeUnknownListenersAsStale?: boolean;

115151

}): Promise<GatewayRestartSnapshot> {

116152

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

153+

const expectedVersion = normalizeOptionalString(params.expectedVersion);

154+

let reachability: GatewayReachability | null = null;

155+

const loadReachability = async () => {

156+

reachability ??= await confirmGatewayReachable(params.port);

157+

return reachability;

158+

};

117159

let runtime: GatewayServiceRuntime = { status: "unknown" };

118160

try {

119161

runtime = await params.service.readRuntime(env);

@@ -136,14 +178,18 @@ export async function inspectGatewayRestart(params: {

136178137179

if (portUsage.status === "busy" && runtime.status !== "running") {

138180

try {

139-

const reachable = await confirmGatewayReachable(params.port);

140-

if (reachable) {

141-

return {

142-

runtime,

143-

portUsage,

144-

healthy: true,

145-

staleGatewayPids: [],

146-

};

181+

const reachable = await loadReachability();

182+

if (reachable.reachable) {

183+

return applyExpectedVersion(

184+

{

185+

runtime,

186+

portUsage,

187+

healthy: true,

188+

staleGatewayPids: [],

189+

gatewayVersion: reachable.gatewayVersion,

190+

},

191+

expectedVersion,

192+

);

147193

}

148194

} catch {

149195

// Probe is best-effort; keep the ownership-based diagnostics.

@@ -176,9 +222,21 @@ export async function inspectGatewayRestart(params: {

176222

) || listenerAttributionGap

177223

: gatewayListeners.length > 0 || listenerAttributionGap;

178224

let healthy = running && ownsPort;

179-

if (!healthy && running && portUsage.status === "busy") {

225+

let gatewayVersion: string | null | undefined;

226+

if (expectedVersion && healthy && portUsage.status === "busy") {

180227

try {

181-

healthy = await confirmGatewayReachable(params.port);

228+

const reachable = await loadReachability();

229+

healthy = reachable.reachable;

230+

gatewayVersion = reachable.gatewayVersion;

231+

} catch {

232+

healthy = false;

233+

}

234+

}

235+

if (!healthy && running && portUsage.status === "busy" && !expectedVersion) {

236+

try {

237+

const reachable = await loadReachability();

238+

healthy = reachable.reachable;

239+

gatewayVersion = reachable.gatewayVersion;

182240

} catch {

183241

// best-effort probe

184242

}

@@ -203,12 +261,16 @@ export async function inspectGatewayRestart(params: {

203261

]),

204262

);

205263206-

return {

207-

runtime,

208-

portUsage,

209-

healthy,

210-

staleGatewayPids,

211-

};

264+

return applyExpectedVersion(

265+

{

266+

runtime,

267+

portUsage,

268+

healthy,

269+

staleGatewayPids,

270+

...(gatewayVersion !== undefined ? { gatewayVersion } : {}),

271+

},

272+

expectedVersion,

273+

);

212274

}

213275214276

function shouldEarlyExitStoppedFree(

@@ -243,6 +305,7 @@ export async function waitForGatewayHealthyRestart(params: {

243305

attempts?: number;

244306

delayMs?: number;

245307

env?: NodeJS.ProcessEnv;

308+

expectedVersion?: string | null;

246309

includeUnknownListenersAsStale?: boolean;

247310

}): Promise<GatewayRestartSnapshot> {

248311

const attempts = params.attempts ?? DEFAULT_RESTART_HEALTH_ATTEMPTS;

@@ -252,6 +315,7 @@ export async function waitForGatewayHealthyRestart(params: {

252315

service: params.service,

253316

port: params.port,

254317

env: params.env,

318+

expectedVersion: params.expectedVersion,

255319

includeUnknownListenersAsStale: params.includeUnknownListenersAsStale,

256320

});

257321

@@ -282,6 +346,7 @@ export async function waitForGatewayHealthyRestart(params: {

282346

service: params.service,

283347

port: params.port,

284348

env: params.env,

349+

expectedVersion: params.expectedVersion,

285350

includeUnknownListenersAsStale: params.includeUnknownListenersAsStale,

286351

});

287352

}

@@ -328,6 +393,12 @@ function renderPortUsageDiagnostics(snapshot: GatewayPortHealthSnapshot): string

328393329394

export function renderRestartDiagnostics(snapshot: GatewayRestartSnapshot): string[] {

330395

const lines: string[] = [];

396+

if (snapshot.versionMismatch) {

397+

const actual = snapshot.versionMismatch.actual ?? "unavailable";

398+

lines.push(

399+

`Gateway version mismatch: expected ${snapshot.versionMismatch.expected}, running gateway reported ${actual}.`,

400+

);

401+

}

331402

const runtimeSummary = [

332403

snapshot.runtime.status ? `status=${snapshot.runtime.status}` : null,

333404

snapshot.runtime.state ? `state=${snapshot.runtime.state}` : null,