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

推荐订阅源

I
InfoQ
S
SegmentFault 最新的问题
N
Netflix TechBlog - Medium
B
Blog
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 聂微东
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
U
Unit 42
J
Java Code Geeks
IT之家
IT之家
aimingoo的专栏
aimingoo的专栏
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
腾讯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(discord): configure gateway ready timeouts · openclaw...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -19,15 +19,49 @@ import {

1919

} from "./gateway-supervisor.js";

2020

import type { DiscordMonitorStatusSink } from "./status.js";

212122-

const DISCORD_GATEWAY_READY_TIMEOUT_MS = 15_000;

23-

const DISCORD_GATEWAY_RUNTIME_READY_TIMEOUT_MS = 30_000;

22+

const DEFAULT_DISCORD_GATEWAY_READY_TIMEOUT_MS = 15_000;

23+

const DEFAULT_DISCORD_GATEWAY_RUNTIME_READY_TIMEOUT_MS = 30_000;

24+

const MAX_DISCORD_GATEWAY_READY_TIMEOUT_MS = 120_000;

25+

const DISCORD_GATEWAY_READY_TIMEOUT_ENV = "OPENCLAW_DISCORD_READY_TIMEOUT_MS";

26+

const DISCORD_GATEWAY_RUNTIME_READY_TIMEOUT_ENV = "OPENCLAW_DISCORD_RUNTIME_READY_TIMEOUT_MS";

2427

const DISCORD_GATEWAY_READY_POLL_MS = 250;

2528

const DISCORD_GATEWAY_STARTUP_DISCONNECT_DRAIN_TIMEOUT_MS = 5_000;

2629

const DISCORD_GATEWAY_STARTUP_TERMINATE_CLOSE_TIMEOUT_MS = 1_000;

2730

const DISCORD_GATEWAY_TRANSPORT_ACTIVITY_STATUS_MIN_INTERVAL_MS = 30_000;

28312932

type GatewayReadyWaitResult = "ready" | "stopped" | "timeout";

303334+

function normalizeGatewayReadyTimeoutMs(value: unknown): number | undefined {

35+

const numeric =

36+

typeof value === "number" ? value : typeof value === "string" ? Number(value) : Number.NaN;

37+

if (!Number.isFinite(numeric) || numeric <= 0) {

38+

return undefined;

39+

}

40+

return Math.min(Math.floor(numeric), MAX_DISCORD_GATEWAY_READY_TIMEOUT_MS);

41+

}

42+43+

export function resolveDiscordGatewayReadyTimeoutMs(params?: {

44+

configuredTimeoutMs?: number;

45+

env?: NodeJS.ProcessEnv;

46+

}): number {

47+

return (

48+

normalizeGatewayReadyTimeoutMs(params?.configuredTimeoutMs) ??

49+

normalizeGatewayReadyTimeoutMs(params?.env?.[DISCORD_GATEWAY_READY_TIMEOUT_ENV]) ??

50+

DEFAULT_DISCORD_GATEWAY_READY_TIMEOUT_MS

51+

);

52+

}

53+54+

export function resolveDiscordGatewayRuntimeReadyTimeoutMs(params?: {

55+

configuredTimeoutMs?: number;

56+

env?: NodeJS.ProcessEnv;

57+

}): number {

58+

return (

59+

normalizeGatewayReadyTimeoutMs(params?.configuredTimeoutMs) ??

60+

normalizeGatewayReadyTimeoutMs(params?.env?.[DISCORD_GATEWAY_RUNTIME_READY_TIMEOUT_ENV]) ??

61+

DEFAULT_DISCORD_GATEWAY_RUNTIME_READY_TIMEOUT_MS

62+

);

63+

}

64+3165

async function restartGatewayAfterReadyTimeout(params: {

3266

gateway?: Pick<MutableDiscordGateway, "connect" | "disconnect" | "ws">;

3367

abortSignal?: AbortSignal;

@@ -158,6 +192,7 @@ function createGatewayStatusObserver(params: {

158192

runtime: RuntimeEnv;

159193

pushStatus: (patch: Parameters<DiscordMonitorStatusSink>[0]) => void;

160194

isLifecycleStopping: () => boolean;

195+

runtimeReadyTimeoutMs: number;

161196

}) {

162197

let forceStopHandler: ((err: unknown) => void) | undefined;

163198

let queuedForceStopError: unknown;

@@ -214,7 +249,7 @@ function createGatewayStatusObserver(params: {

214249

}

215250

const at = Date.now();

216251

const error = new Error(

217-

`discord gateway opened but did not reach READY within ${DISCORD_GATEWAY_RUNTIME_READY_TIMEOUT_MS}ms`,

252+

`discord gateway opened but did not reach READY within ${params.runtimeReadyTimeoutMs}ms`,

218253

);

219254

params.pushStatus({

220255

connected: false,

@@ -227,7 +262,7 @@ function createGatewayStatusObserver(params: {

227262

});

228263

params.runtime.error?.(danger(error.message));

229264

triggerForceStop(error);

230-

}, DISCORD_GATEWAY_RUNTIME_READY_TIMEOUT_MS);

265+

}, params.runtimeReadyTimeoutMs);

231266

readyTimeoutId.unref?.();

232267

}

233268

};

@@ -292,9 +327,10 @@ async function waitForGatewayReady(params: {

292327

pushStatus?: (patch: Parameters<DiscordMonitorStatusSink>[0]) => void;

293328

runtime: RuntimeEnv;

294329

beforeRestart?: () => Promise<void> | void;

330+

readyTimeoutMs: number;

295331

}): Promise<void> {

296332

const waitUntilReady = async (): Promise<GatewayReadyWaitResult> => {

297-

const deadlineAt = Date.now() + DISCORD_GATEWAY_READY_TIMEOUT_MS;

333+

const deadlineAt = Date.now() + params.readyTimeoutMs;

298334

while (!params.abortSignal?.aborted) {

299335

if ((await params.beforePoll?.()) === "stop") {

300336

return "stopped";

@@ -324,16 +360,12 @@ async function waitForGatewayReady(params: {

324360

return;

325361

}

326362

if (!params.gateway) {

327-

throw new Error(

328-

`discord gateway did not reach READY within ${DISCORD_GATEWAY_READY_TIMEOUT_MS}ms`,

329-

);

363+

throw new Error(`discord gateway did not reach READY within ${params.readyTimeoutMs}ms`);

330364

}

331365332366

const restartAt = Date.now();

333367

params.runtime.error?.(

334-

danger(

335-

`discord: gateway was not ready after ${DISCORD_GATEWAY_READY_TIMEOUT_MS}ms; restarting gateway`,

336-

),

368+

danger(`discord: gateway was not ready after ${params.readyTimeoutMs}ms; restarting gateway`),

337369

);

338370

params.pushStatus?.({

339371

connected: false,

@@ -356,7 +388,7 @@ async function waitForGatewayReady(params: {

356388357389

if ((await waitUntilReady()) === "timeout") {

358390

throw new Error(

359-

`discord gateway did not reach READY within ${DISCORD_GATEWAY_READY_TIMEOUT_MS}ms after restart`,

391+

`discord gateway did not reach READY within ${params.readyTimeoutMs}ms after restart`,

360392

);

361393

}

362394

}

@@ -372,6 +404,8 @@ export async function runDiscordGatewayLifecycle(params: {

372404

threadBindings: { stop: () => void };

373405

gatewaySupervisor: DiscordGatewaySupervisor;

374406

statusSink?: DiscordMonitorStatusSink;

407+

gatewayReadyTimeoutMs?: number;

408+

gatewayRuntimeReadyTimeoutMs?: number;

375409

}) {

376410

const gateway = params.gateway;

377411

if (gateway) {

@@ -387,12 +421,21 @@ export async function runDiscordGatewayLifecycle(params: {

387421

const pushStatus = (patch: Parameters<DiscordMonitorStatusSink>[0]) => {

388422

params.statusSink?.(patch);

389423

};

424+

const gatewayReadyTimeoutMs = resolveDiscordGatewayReadyTimeoutMs({

425+

configuredTimeoutMs: params.gatewayReadyTimeoutMs,

426+

env: process.env,

427+

});

428+

const gatewayRuntimeReadyTimeoutMs = resolveDiscordGatewayRuntimeReadyTimeoutMs({

429+

configuredTimeoutMs: params.gatewayRuntimeReadyTimeoutMs,

430+

env: process.env,

431+

});

390432

const statusObserver = createGatewayStatusObserver({

391433

gateway,

392434

abortSignal: params.abortSignal,

393435

runtime: params.runtime,

394436

pushStatus,

395437

isLifecycleStopping: () => lifecycleStopping,

438+

runtimeReadyTimeoutMs: gatewayRuntimeReadyTimeoutMs,

396439

});

397440

gatewayEmitter?.on("debug", statusObserver.onGatewayDebug);

398441

let lastTransportActivityStatusAt: number | undefined;

@@ -460,6 +503,7 @@ export async function runDiscordGatewayLifecycle(params: {

460503

pushStatus,

461504

runtime: params.runtime,

462505

beforeRestart: statusObserver.clearReadyWatch,

506+

readyTimeoutMs: gatewayReadyTimeoutMs,

463507

});

464508465509

if (drainPendingGatewayErrors() === "stop") {