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

推荐订阅源

G
Google Developers Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Martin Fowler
Martin Fowler
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
IT之家
IT之家
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
P
Proofpoint News Feed
博客园_首页
J
Java Code Geeks
C
Check Point Blog
I
InfoQ
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
D
Docker
U
Unit 42
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
GbyAI
GbyAI
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog

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): bound stalled read-receipt socket operatio...
Alix-007 · 2026-06-16 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -164,7 +164,7 @@ handoff path over manual terminal capture.

164164
165165

- Gateway owns the WhatsApp socket and reconnect loop.

166166

- The reconnect watchdog uses WhatsApp Web transport activity, not only inbound app-message volume, so a quiet linked-device session is not restarted solely because nobody has sent a message recently. A longer application-silence cap still forces a reconnect if transport frames keep arriving but no application messages are handled for the watchdog window; after a transient reconnect for a recently active session, that application-silence check uses the normal message timeout for the first recovery window.

167-

- Baileys socket timings are explicit under `web.whatsapp.*`: `keepAliveIntervalMs` controls WhatsApp Web application pings, `connectTimeoutMs` controls the opening handshake timeout, and `defaultQueryTimeoutMs` controls Baileys query waits plus OpenClaw's local outbound send/presence operation bound.

167+

- Baileys socket timings are explicit under `web.whatsapp.*`: `keepAliveIntervalMs` controls WhatsApp Web application pings, `connectTimeoutMs` controls the opening handshake timeout, and `defaultQueryTimeoutMs` controls Baileys query waits plus OpenClaw's local outbound send/presence and inbound read-receipt operation bounds.

168168

- Outbound sends require an active WhatsApp listener for the target account.

169169

- Group sends attach native mention metadata for `@+<digits>` and `@<digits>` tokens in text and media captions when the token matches current WhatsApp participant metadata, including LID-backed groups.

170170

- Status and broadcast chats are ignored (`@status`, `@broadcast`).

Original file line numberDiff line numberDiff line change

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

3333

isWhatsAppSocketOperationTimeoutError,

3434

resolveWhatsAppSocketOperationTimeoutMs,

3535

resolveWhatsAppSocketTiming,

36+

withWhatsAppSocketOperationTimeout,

3637

type WhatsAppSocketOperationAdapter,

3738

type WhatsAppSocketTimingOptions,

3839

} from "../socket-timing.js";

@@ -808,9 +809,11 @@ export async function attachWebInboxToSocket(

808809

}

809810

const { id, remoteJid, participant } = target;

810811

try {

811-

await (getCurrentSock() ?? sock).readMessages([

812-

{ remoteJid, id, participant, fromMe: false },

813-

]);

812+

await withWhatsAppSocketOperationTimeout(

813+

"readMessages",

814+

(getCurrentSock() ?? sock).readMessages([{ remoteJid, id, participant, fromMe: false }]),

815+

sendOperationTimeoutMs,

816+

);

814817

const suffix = participant ? ` (participant ${participant})` : "";

815818

logWhatsAppVerbose(options.verbose, `Marked message ${id} as read for ${remoteJid}${suffix}`);

816819

} catch (err) {

Original file line numberDiff line numberDiff line change

@@ -2,6 +2,7 @@

22

import fsSync from "node:fs";

33

import path from "node:path";

44

import "./monitor-inbox.test-harness.js";

5+

import { defaultRuntime } from "openclaw/plugin-sdk/runtime-env";

56

import { beforeEach, describe, expect, it, vi } from "vitest";

67

import {

78

registerWhatsAppConnectionController,

@@ -996,6 +997,58 @@ describe("web monitor inbox", () => {

996997

}

997998

});

998999
1000+

it("bounds stalled read-receipt socket operations instead of hanging", async () => {

1001+

const onMessage = vi.fn(async () => undefined);

1002+

const logSpy = vi.spyOn(defaultRuntime, "log").mockImplementation(() => undefined);

1003+

const { listener, sock } = await startInboxMonitor(onMessage as InboxOnMessage, {

1004+

verbose: true,

1005+

});

1006+

vi.useFakeTimers();

1007+

try {

1008+

const messageId = nextMessageId("read-receipt-timeout");

1009+

// A WhatsApp socket whose read-receipt acknowledgement never resolves

1010+

// (e.g. a stalled Baileys privacy IQ query) would otherwise hang the

1011+

// inbound delivery pipeline forever.

1012+

sock.readMessages.mockImplementationOnce(() => new Promise(() => {}));

1013+
1014+

sock.ev.emit(

1015+

"messages.upsert",

1016+

buildNotifyMessageUpsert({

1017+

id: messageId,

1018+

remoteJid: "999@s.whatsapp.net",

1019+

text: "ping",

1020+

timestamp: 1_700_000_000,

1021+

pushName: "Tester",

1022+

}),

1023+

);

1024+

await waitForMessageCalls(onMessage, 1);

1025+
1026+

// The read receipt is attempted on the stalled socket...

1027+

await vi.waitFor(() => {

1028+

expect(sock.readMessages).toHaveBeenCalledWith([

1029+

{ remoteJid: "999@s.whatsapp.net", id: messageId, participant: undefined, fromMe: false },

1030+

]);

1031+

});

1032+
1033+

// ...and is bounded by the socket operation timeout rather than hanging.

1034+

await vi.advanceTimersByTimeAsync(DEFAULT_WHATSAPP_SOCKET_TIMING.defaultQueryTimeoutMs);

1035+

await vi.waitFor(() => {

1036+

const loggedTimeoutFailure = logSpy.mock.calls.some(

1037+

([message]) =>

1038+

typeof message === "string" &&

1039+

message.includes(`Failed to mark message ${messageId} read`) &&

1040+

message.includes("readMessages timed out"),

1041+

);

1042+

expect(loggedTimeoutFailure).toBe(true);

1043+

});

1044+

expect(vi.getTimerCount()).toBe(0);

1045+

} finally {

1046+

vi.useRealTimers();

1047+

await listener.close();

1048+

logSpy.mockRestore();

1049+

}

1050+

});

1051+
9991052

it("bounds reconnect-gap retries even when reconnect attempts are unlimited", async () => {

10001053

const onMessage = vi.fn(async () => undefined);

10011054

const socketRef = createSocketRef();

Original file line numberDiff line numberDiff line change

@@ -1,12 +1,13 @@

11

import { MAX_TIMER_TIMEOUT_MS } from "openclaw/plugin-sdk/number-runtime";

22

// Whatsapp tests cover socket timing plugin behavior.

3-

import { describe, expect, it } from "vitest";

3+

import { afterEach, describe, expect, it, vi } from "vitest";

44

import {

55

DEFAULT_WHATSAPP_SOCKET_TIMING,

66

WhatsAppSocketOperationTimeoutError,

77

isWhatsAppSocketOperationTimeoutError,

88

resolveWhatsAppSocketOperationTimeoutMs,

99

resolveWhatsAppSocketTiming,

10+

withWhatsAppSocketOperationTimeout,

1011

} from "./socket-timing.js";

1112
1213

describe("resolveWhatsAppSocketTiming", () => {

@@ -76,3 +77,41 @@ describe("resolveWhatsAppSocketTiming", () => {

7677

);

7778

});

7879

});

80+
81+

describe("withWhatsAppSocketOperationTimeout", () => {

82+

afterEach(() => {

83+

vi.useRealTimers();

84+

});

85+
86+

it("bounds a stalled readMessages socket operation with a typed timeout", async () => {

87+

vi.useFakeTimers();

88+

// A WhatsApp read-receipt call that never resolves (socket stall).

89+

const stalled = new Promise<void>(() => {});

90+

const bounded = withWhatsAppSocketOperationTimeout(

91+

"readMessages",

92+

stalled,

93+

DEFAULT_WHATSAPP_SOCKET_TIMING.defaultQueryTimeoutMs,

94+

);

95+

const rejection = expect(bounded).rejects.toMatchObject({

96+

name: "WhatsAppSocketOperationTimeoutError",

97+

operation: "readMessages",

98+

timeoutMs: DEFAULT_WHATSAPP_SOCKET_TIMING.defaultQueryTimeoutMs,

99+

deliveryState: "unknown",

100+

});

101+

await vi.advanceTimersByTimeAsync(DEFAULT_WHATSAPP_SOCKET_TIMING.defaultQueryTimeoutMs);

102+

await rejection;

103+

// The bounding timer is cleared once the operation settles.

104+

expect(vi.getTimerCount()).toBe(0);

105+

});

106+
107+

it("resolves the operation value when it settles before the bound", async () => {

108+

vi.useFakeTimers();

109+

const bounded = withWhatsAppSocketOperationTimeout(

110+

"readMessages",

111+

Promise.resolve("read"),

112+

DEFAULT_WHATSAPP_SOCKET_TIMING.defaultQueryTimeoutMs,

113+

);

114+

await expect(bounded).resolves.toBe("read");

115+

expect(vi.getTimerCount()).toBe(0);

116+

});

117+

});

Original file line numberDiff line numberDiff line change

@@ -506,13 +506,13 @@ export const FIELD_HELP: Record<string, string> = {

506506

"web.reconnect.maxAttempts":

507507

"Maximum reconnect attempts before giving up for the current failure sequence (0 means no retries). Use finite caps for controlled failure handling in automation-sensitive environments.",

508508

"web.whatsapp":

509-

"WhatsApp Web socket timing controls used by Baileys and OpenClaw's local outbound operation bounds. Tune these when network edges, proxies, or NATs are closing otherwise healthy WhatsApp Web sessions.",

509+

"WhatsApp Web socket timing controls used by Baileys and OpenClaw's local outbound and inbound read-receipt operation bounds. Tune these when network edges, proxies, or NATs are closing otherwise healthy WhatsApp Web sessions.",

510510

"web.whatsapp.keepAliveIntervalMs":

511511

"Baileys WhatsApp Web application ping interval in milliseconds. Lower values detect and refresh idle links sooner; keep this comfortably below your network's idle-flow timeout.",

512512

"web.whatsapp.connectTimeoutMs":

513513

"Maximum time in milliseconds Baileys waits for the WhatsApp WebSocket opening handshake. Use a higher value on slow or lossy networks that report opening handshake 408 timeouts.",

514514

"web.whatsapp.defaultQueryTimeoutMs":

515-

"Default Baileys query timeout and OpenClaw outbound send/presence operation bound in milliseconds for WhatsApp Web requests. Keep aligned with upstream unless a network-specific investigation shows socket operations need longer.",

515+

"Default Baileys query timeout and OpenClaw outbound send/presence and inbound read-receipt operation bound in milliseconds for WhatsApp Web requests. Keep aligned with upstream unless a network-specific investigation shows socket operations need longer.",

516516

talk: "Talk-mode voice synthesis settings for voice identity, model selection, output format, and interruption behavior. Use this section to tune human-facing voice UX while controlling latency and cost.",

517517

"gateway.auth.token":

518518

"Required by default for gateway access (unless using Tailscale Serve identity); required for non-loopback binds.",

Original file line numberDiff line numberDiff line change

@@ -365,7 +365,7 @@ export type WebWhatsAppConfig = {

365365

keepAliveIntervalMs?: number;

366366

/** WebSocket opening handshake timeout in milliseconds. Default: 60000. */

367367

connectTimeoutMs?: number;

368-

/** Baileys query and WhatsApp outbound socket operation timeout in milliseconds. Default: 60000. */

368+

/** Baileys query and WhatsApp outbound/read-receipt operation timeout in milliseconds. Default: 60000. */

369369

defaultQueryTimeoutMs?: number;

370370

};

371371