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

推荐订阅源

博客园_首页
博客园 - Franky
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
量子位
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
V
Visual Studio Blog
雷峰网
雷峰网
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队
博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator 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: clarify slack socket retry errors · openclaw/opencla...
steipete · 2026-05-05 · via Recent Commits to openclaw:main

File tree

  • extensions/slack/src/monitor

Original file line numberDiff line numberDiff line change

@@ -87,6 +87,7 @@ Docs: https://docs.openclaw.ai

8787

- active-memory: skip the memory sub-agent gracefully instead of logging a confusing allowlist error when no memory plugin (`memory-core` or `memory-lancedb`) is loaded, so active-memory with no memory backend no longer produces misleading "No callable tools remain" warnings in the gateway log. Fixes #77506. Thanks @hclsys.

8888

- Memory/wiki: preserve representation from both corpora in `corpus=all` searches while backfilling unused result capacity, so memory hits are not starved by numerically higher wiki integer scores. Fixes #77337. Thanks @hclsys.

8989

- Telegram: clean up tool-only draft previews after assistant message boundaries so transient `Surfacing...` tool-status bubbles do not linger when no matching final preview arrives. Thanks @BunsDev.

90+

- Slack: report `unknown error` instead of `undefined` in socket-mode startup retry logs and label the retry reason explicitly.

9091

- Telegram: let explicit forum-topic `requireMention` settings override persisted `/activate` and `/deactivate` state, so per-topic mention gates work consistently. Fixes #49864. Thanks @Panniantong.

9192

- Cron: surface failed isolated-run diagnostics in `cron show`, status, and run history when requested tools are unavailable, so blocked cron runs report the actual tool-policy failure instead of a misleading green result. Fixes #75763. Thanks @RyanSandoval.

9293

- TUI/escape abort: track the in-flight runId after `chat.send` resolves so pressing Esc during the gap before the first gateway event aborts the run instead of repeatedly printing `no active run`. Fixes #1296. Thanks @Lukavyi and @romneyda.

Original file line numberDiff line numberDiff line change

@@ -5,8 +5,11 @@ import {

55

publishSlackDisconnectedStatus,

66

startSlackSocketAndWaitForDisconnect,

77

} from "./provider-support.js";

8-

import { formatSlackSocketReconnectMessage } from "./provider.js";

9-

import { waitForSlackSocketDisconnect } from "./reconnect-policy.js";

8+

import {

9+

formatSlackSocketReconnectMessage,

10+

formatSlackSocketStartRetryMessage,

11+

} from "./provider.js";

12+

import { formatUnknownError, waitForSlackSocketDisconnect } from "./reconnect-policy.js";

1013
1114

class FakeEmitter {

1215

private listeners = new Map<string, Set<(...args: unknown[]) => void>>();

@@ -97,6 +100,28 @@ describe("slack socket reconnect helpers", () => {

97100

).toBe("slack socket disconnected (disconnect); reconnecting in 2s (attempt 1/12)");

98101

});

99102
103+

it("formats missing and unserializable socket errors without leaking undefined", () => {

104+

const circular: Record<string, unknown> = {};

105+

circular.self = circular;

106+
107+

expect(formatUnknownError(undefined)).toBe("unknown error");

108+

expect(formatUnknownError(null)).toBe("unknown error");

109+

expect(formatUnknownError("")).toBe("unknown error");

110+

expect(formatUnknownError(new Error(""))).toBe("Error");

111+

expect(formatUnknownError(circular)).toBe("unknown error");

112+

});

113+
114+

it("formats socket start retries with an explicit reason field", () => {

115+

expect(

116+

formatSlackSocketStartRetryMessage({

117+

attempt: 1,

118+

maxAttempts: 12,

119+

delayMs: 2_340,

120+

error: undefined,

121+

}),

122+

).toBe('slack socket mode failed to start; retry 1/12 in 2s reason="unknown error"');

123+

});

124+
100125

it("resolves disconnect waiter on socket disconnect event", async () => {

101126

const client = new FakeEmitter();

102127

const app = { receiver: { client } };

Original file line numberDiff line numberDiff line change

@@ -97,6 +97,16 @@ export function formatSlackSocketReconnectMessage(params: {

9797

return `slack socket disconnected (${params.event}); reconnecting in ${Math.round(params.delayMs / 1000)}s (attempt ${params.attempt}/${maxAttempts})${suffix}`;

9898

}

9999
100+

export function formatSlackSocketStartRetryMessage(params: {

101+

attempt: number;

102+

maxAttempts: number;

103+

delayMs: number;

104+

error: unknown;

105+

}) {

106+

const maxAttempts = params.maxAttempts > 0 ? String(params.maxAttempts) : "∞";

107+

return `slack socket mode failed to start; retry ${params.attempt}/${maxAttempts} in ${Math.round(params.delayMs / 1000)}s reason="${formatUnknownError(params.error)}"`;

108+

}

109+
100110

function parseApiAppIdFromAppToken(raw?: string) {

101111

const token = raw?.trim();

102112

if (!token) {

@@ -534,7 +544,12 @@ export async function monitorSlackProvider(opts: MonitorSlackOpts = {}) {

534544

}

535545

const delayMs = computeBackoff(SLACK_SOCKET_RECONNECT_POLICY, reconnectAttempts);

536546

runtime.error?.(

537-

`slack socket mode failed to start. retry ${reconnectAttempts}/${SLACK_SOCKET_RECONNECT_POLICY.maxAttempts || "∞"} in ${Math.round(delayMs / 1000)}s (${formatUnknownError(err)})`,

547+

formatSlackSocketStartRetryMessage({

548+

attempt: reconnectAttempts,

549+

maxAttempts: SLACK_SOCKET_RECONNECT_POLICY.maxAttempts,

550+

delayMs,

551+

error: err,

552+

}),

538553

);

539554

try {

540555

await sleepWithAbort(delayMs, opts.abortSignal);

Original file line numberDiff line numberDiff line change

@@ -94,14 +94,17 @@ export function isNonRecoverableSlackAuthError(error: unknown): boolean {

9494

}

9595
9696

export function formatUnknownError(error: unknown): string {

97+

if (error === undefined || error === null) {

98+

return "unknown error";

99+

}

97100

if (error instanceof Error) {

98-

return error.message;

101+

return error.message || error.name || "unknown error";

99102

}

100103

if (typeof error === "string") {

101-

return error;

104+

return error || "unknown error";

102105

}

103106

try {

104-

return JSON.stringify(error);

107+

return JSON.stringify(error) ?? "unknown error";

105108

} catch {

106109

return "unknown error";

107110

}