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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Vercel News
Vercel News
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
罗磊的独立博客
B
Blog
博客园_首页
A
About on SuperTechFans
有赞技术团队
有赞技术团队
V
V2EX
U
Unit 42
I
InfoQ
IT之家
IT之家
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
The Cloudflare Blog
H
Help Net Security

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(gateway): retry startup handshakes before surfacing f...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -50,6 +50,7 @@ import {

5050

validateRequestFrame,

5151

validateResponseFrame,

5252

} from "./protocol/index.js";

53+

import { resolveGatewayStartupRetryAfterMs } from "./protocol/startup-unavailable.js";

53545455

type Pending = {

5556

resolve: (value: unknown) => void;

@@ -168,6 +169,7 @@ export const GATEWAY_CLOSE_CODE_HINTS: Readonly<Record<number, string>> = {

168169

1006: "abnormal closure (no close frame)",

169170

1008: "policy violation",

170171

1012: "service restart",

172+

1013: "try again later",

171173

};

172174173175

export function describeGatewayCloseCode(code: number): string | undefined {

@@ -227,6 +229,7 @@ export class GatewayClient {

227229

private reconnectTimer: NodeJS.Timeout | null = null;

228230

private pendingDeviceTokenRetry = false;

229231

private deviceTokenRetryBudgetUsed = false;

232+

private pendingStartupReconnectDelayMs: number | null = null;

230233

private pendingConnectErrorDetailCode: string | null = null;

231234

// Track last tick to detect silent stalls.

232235

private lastTick: number | null = null;

@@ -350,6 +353,10 @@ export class GatewayClient {

350353

}

351354

this.socketOpened = false;

352355

this.resolvePendingStop(ws);

356+

if (this.pendingStartupReconnectDelayMs !== null) {

357+

this.scheduleReconnect();

358+

return;

359+

}

353360

// Clear persisted device auth state only when device-token auth was active.

354361

// Shared token/password failures can return the same close reason but should

355362

// not erase a valid cached device token.

@@ -429,6 +436,7 @@ export class GatewayClient {

429436

this.closed = true;

430437

this.pendingDeviceTokenRetry = false;

431438

this.deviceTokenRetryBudgetUsed = false;

439+

this.pendingStartupReconnectDelayMs = null;

432440

this.pendingConnectErrorDetailCode = null;

433441

this.clearReconnectTimer();

434442

if (this.tickTimer) {

@@ -576,6 +584,7 @@ export class GatewayClient {

576584

.then((helloOk) => {

577585

this.pendingDeviceTokenRetry = false;

578586

this.deviceTokenRetryBudgetUsed = false;

587+

this.pendingStartupReconnectDelayMs = null;

579588

this.pendingConnectErrorDetailCode = null;

580589

const authInfo = helloOk?.auth;

581590

if (authInfo?.deviceToken && this.opts.deviceIdentity) {

@@ -626,6 +635,13 @@ export class GatewayClient {

626635

this.deviceTokenRetryBudgetUsed = true;

627636

this.backoffMs = Math.min(this.backoffMs, 250);

628637

}

638+

const startupRetryAfterMs = resolveGatewayStartupRetryAfterMs(err);

639+

if (startupRetryAfterMs !== null) {

640+

this.pendingStartupReconnectDelayMs = startupRetryAfterMs;

641+

logDebug(`gateway connect failed: ${String(err)}`);

642+

this.ws?.close(1013, "gateway starting");

643+

return;

644+

}

629645

this.opts.onConnectError?.(err instanceof Error ? err : new Error(String(err)));

630646

const msg = `gateway connect failed: ${String(err)}`;

631647

if (this.opts.mode === GATEWAY_CLIENT_MODES.PROBE || isGatewayClientStoppedError(err)) {

@@ -916,8 +932,12 @@ export class GatewayClient {

916932

this.tickTimer = null;

917933

}

918934

this.clearReconnectTimer();

919-

const delay = this.backoffMs;

920-

this.backoffMs = Math.min(this.backoffMs * 2, 30_000);

935+

const startupDelay = this.pendingStartupReconnectDelayMs;

936+

this.pendingStartupReconnectDelayMs = null;

937+

const delay = startupDelay ?? this.backoffMs;

938+

if (startupDelay === null) {

939+

this.backoffMs = Math.min(this.backoffMs * 2, 30_000);

940+

}

921941

this.reconnectTimer = setTimeout(() => {

922942

this.reconnectTimer = null;

923943

this.start();