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

推荐订阅源

月光博客
月光博客
罗磊的独立博客
The GitHub Blog
The GitHub Blog
V
V2EX
Last Week in AI
Last Week in AI
博客园 - 聂微东
MyScale Blog
MyScale Blog
美团技术团队
L
LangChain Blog
博客园 - Franky
腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
S
SegmentFault 最新的问题
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Stack Overflow Blog
Stack Overflow Blog
量子位
小众软件
小众软件
宝玉的分享
宝玉的分享
J
Java Code Geeks
Google DeepMind News
Google DeepMind News
D
Docker
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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(whatsapp): stop reconnecting quiet sockets · openclaw...
vincentkoc · 2026-04-27 · via Recent Commits to openclaw:main

@@ -40,8 +40,10 @@ export type WhatsAppLiveConnection = {

4040

heartbeat: TimerHandle | null;

4141

watchdogTimer: TimerHandle | null;

4242

lastInboundAt: number | null;

43+

lastTransportActivityAt: number;

4344

handledMessages: number;

4445

unregisterUnhandled: (() => void) | null;

46+

unregisterTransportActivity: (() => void) | null;

4547

backgroundTasks: Set<Promise<unknown>>;

4648

closePromise: Promise<WebListenerCloseReason>;

4749

resolveClose: (reason: WebListenerCloseReason) => void;

@@ -51,6 +53,7 @@ export type WhatsAppConnectionSnapshot = {

5153

connectionId: string;

5254

startedAt: number;

5355

lastInboundAt: number | null;

56+

lastTransportActivityAt: number;

5457

handledMessages: number;

5558

reconnectAttempts: number;

5659

uptimeMs: number;

@@ -83,6 +86,12 @@ function createNeverResolvePromise<T>(): Promise<T> {

8386

return new Promise<T>(() => {});

8487

}

858889+

type SocketActivityEmitter = {

90+

on?: (event: string, listener: (...args: unknown[]) => void) => void;

91+

off?: (event: string, listener: (...args: unknown[]) => void) => void;

92+

removeListener?: (event: string, listener: (...args: unknown[]) => void) => void;

93+

};

94+8695

function createLiveConnection(params: {

8796

connectionId: string;

8897

sock: WASocket;

@@ -108,8 +117,10 @@ function createLiveConnection(params: {

108117

heartbeat: null,

109118

watchdogTimer: null,

110119

lastInboundAt: null,

120+

lastTransportActivityAt: Date.now(),

111121

handledMessages: 0,

112122

unregisterUnhandled: null,

123+

unregisterTransportActivity: null,

113124

backgroundTasks: new Set<Promise<unknown>>(),

114125

closePromise,

115126

resolveClose: resolveClosePromise,

@@ -232,6 +243,7 @@ export class WhatsAppConnectionController {

232243

private readonly heartbeatSeconds: number;

233244

private readonly keepAlive: boolean;

234245

private readonly messageTimeoutMs: number;

246+

private readonly appSilenceTimeoutMs: number;

235247

private readonly watchdogCheckMs: number;

236248

private readonly verbose: boolean;

237249

private readonly abortSignal?: AbortSignal;

@@ -262,6 +274,7 @@ export class WhatsAppConnectionController {

262274

this.keepAlive = params.keepAlive;

263275

this.heartbeatSeconds = params.heartbeatSeconds;

264276

this.messageTimeoutMs = params.messageTimeoutMs;

277+

this.appSilenceTimeoutMs = Math.max(params.messageTimeoutMs, params.messageTimeoutMs * 4);

265278

this.watchdogCheckMs = params.watchdogCheckMs;

266279

this.reconnectPolicy = params.reconnectPolicy;

267280

this.abortSignal = params.abortSignal;

@@ -311,6 +324,14 @@ export class WhatsAppConnectionController {

311324

}

312325

this.current.handledMessages += 1;

313326

this.current.lastInboundAt = timestamp;

327+

this.current.lastTransportActivityAt = timestamp;

328+

}

329+330+

noteTransportActivity(timestamp = Date.now()): void {

331+

if (!this.current) {

332+

return;

333+

}

334+

this.current.lastTransportActivityAt = timestamp;

314335

}

315336316337

getCurrentSnapshot(

@@ -323,6 +344,7 @@ export class WhatsAppConnectionController {

323344

connectionId: connection.connectionId,

324345

startedAt: connection.startedAt,

325346

lastInboundAt: connection.lastInboundAt,

347+

lastTransportActivityAt: connection.lastTransportActivityAt,

326348

handledMessages: connection.handledMessages,

327349

reconnectAttempts: this.reconnectAttempts,

328350

uptimeMs: Date.now() - connection.startedAt,

@@ -369,6 +391,7 @@ export class WhatsAppConnectionController {

369391

const listener = await params.createListener({ sock, connection });

370392

connection.listener = listener;

371393

this.current = connection;

394+

connection.unregisterTransportActivity = this.attachTransportActivityListener(sock);

372395

registerWhatsAppConnectionController(this.accountId, this);

373396

this.startTimers(connection, {

374397

onHeartbeat: params.onHeartbeat,

@@ -383,6 +406,7 @@ export class WhatsAppConnectionController {

383406

if (connection?.unregisterUnhandled) {

384407

connection.unregisterUnhandled();

385408

}

409+

connection?.unregisterTransportActivity?.();

386410

throw err;

387411

}

388412

}

@@ -515,6 +539,7 @@ export class WhatsAppConnectionController {

515539

this.socketRef.current = null;

516540

}

517541

connection.unregisterUnhandled?.();

542+

connection.unregisterTransportActivity?.();

518543

if (connection.heartbeat) {

519544

clearInterval(connection.heartbeat);

520545

}

@@ -563,9 +588,14 @@ export class WhatsAppConnectionController {

563588

}, this.heartbeatSeconds * 1000);

564589565590

connection.watchdogTimer = setInterval(() => {

566-

const baselineAt = connection.lastInboundAt ?? connection.startedAt;

567-

const staleForMs = Date.now() - baselineAt;

568-

if (staleForMs <= this.messageTimeoutMs) {

591+

const now = Date.now();

592+

const transportStaleForMs = now - connection.lastTransportActivityAt;

593+

const appBaselineAt = connection.lastInboundAt ?? connection.startedAt;

594+

const appSilentForMs = now - appBaselineAt;

595+

if (

596+

transportStaleForMs <= this.messageTimeoutMs &&

597+

appSilentForMs <= this.appSilenceTimeoutMs

598+

) {

569599

return;

570600

}

571601

const snapshot = this.getCurrentSnapshot(connection);

@@ -581,6 +611,24 @@ export class WhatsAppConnectionController {

581611

}, this.watchdogCheckMs);

582612

}

583613614+

private attachTransportActivityListener(sock: WASocket): (() => void) | null {

615+

const ws = sock.ws as SocketActivityEmitter | undefined;

616+

if (!ws || typeof ws.on !== "function") {

617+

return null;

618+

}

619+620+

const noteActivity = () => this.noteTransportActivity();

621+

ws.on("frame", noteActivity);

622+623+

return () => {

624+

if (typeof ws.off === "function") {

625+

ws.off("frame", noteActivity);

626+

return;

627+

}

628+

ws.removeListener?.("frame", noteActivity);

629+

};

630+

}

631+584632

private stopDisconnectRetries(): void {

585633

if (!this.disconnectRetryController.signal.aborted) {

586634

this.disconnectRetryController.abort();