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

推荐订阅源

博客园 - 司徒正美
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
WordPress大学
WordPress大学
罗磊的独立博客
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
S
SegmentFault 最新的问题
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
D
DataBreaches.Net
雷峰网
雷峰网
GbyAI
GbyAI
宝玉的分享
宝玉的分享

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: parse discord api retry headers strictly · openclaw/...
steipete · 2026-05-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -100,6 +100,32 @@ describe("fetchDiscord", () => {

100100

expect(message).not.toContain("<html");

101101

});

102102
103+

it.each([

104+

["hex", "0x10"],

105+

["fractional", "1.5"],

106+

["overflow", `1${"0".repeat(309)}`],

107+

])("rejects invalid Retry-After header values: %s", async (_label, header) => {

108+

const fetcher = withFetchPreconnect(

109+

async () =>

110+

new Response("<html><title>Error 1015</title><body>rate limited</body></html>", {

111+

status: 429,

112+

headers: { "content-type": "text/html", "retry-after": header },

113+

}),

114+

);

115+
116+

let error: unknown;

117+

try {

118+

await fetchDiscord("/oauth2/applications/@me", "test", fetcher, {

119+

retry: { attempts: 1 },

120+

});

121+

} catch (err) {

122+

error = err;

123+

}

124+
125+

expect(error).toBeInstanceOf(DiscordApiError);

126+

expect((error as DiscordApiError).retryAfter).toBe(60);

127+

});

128+
103129

it("retries rate limits before succeeding", async () => {

104130

let calls = 0;

105131

const fetcher = withFetchPreconnect(async () => {

Original file line numberDiff line numberDiff line change

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

55

type RetryConfig,

66

} from "openclaw/plugin-sdk/retry-runtime";

77

import { isDiscordHtmlResponseBody, summarizeDiscordResponseBody } from "./error-body.js";

8+

import { parseRetryAfterHeaderSeconds } from "./retry-after.js";

89
910

const DISCORD_API_BASE = "https://discord.com/api/v10";

1011

const DISCORD_API_RETRY_DEFAULTS = {

@@ -51,15 +52,7 @@ function parseRetryAfterSeconds(text: string, response: Response): number | unde

5152

if (!header) {

5253

return undefined;

5354

}

54-

const parsed = Number(header);

55-

if (Number.isFinite(parsed) && parsed >= 0) {

56-

return parsed;

57-

}

58-

const retryAt = Date.parse(header);

59-

if (!Number.isFinite(retryAt)) {

60-

return undefined;

61-

}

62-

return Math.max(0, (retryAt - Date.now()) / 1000);

55+

return parseRetryAfterHeaderSeconds(header);

6356

}

6457
6558

function formatRetryAfterSeconds(value: number | undefined): string | undefined {

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

import { parseDiscordRetryAfterBodySeconds, parseRetryAfterHeaderSeconds } from "../retry-after.js";

2+
13

export function readDiscordCode(body: unknown): number | undefined {

24

const value =

35

body && typeof body === "object" && "code" in body

@@ -12,9 +14,6 @@ export function readDiscordCode(body: unknown): number | undefined {

1214

return undefined;

1315

}

1416
15-

const RETRY_AFTER_HEADER_DELAY_RE = /^\d+$/;

16-

const RETRY_AFTER_BODY_SECONDS_RE = /^(?:\d+\.?\d*|\.\d+)$/;

17-
1817

export function readDiscordMessage(body: unknown, fallback: string): string {

1918

const value =

2019

body && typeof body === "object" && "message" in body

@@ -23,36 +22,14 @@ export function readDiscordMessage(body: unknown, fallback: string): string {

2322

return typeof value === "string" && value.trim() ? value : fallback;

2423

}

2524
26-

function readRetryAfterHeader(value: string | null, now = Date.now()): number | undefined {

27-

if (!value) {

28-

return undefined;

29-

}

30-

const trimmed = value.trim();

31-

if (RETRY_AFTER_HEADER_DELAY_RE.test(trimmed)) {

32-

return Number(trimmed);

33-

}

34-

const retryAt = Date.parse(trimmed);

35-

return Number.isFinite(retryAt) ? (retryAt - now) / 1000 : undefined;

36-

}

37-
38-

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

39-

const seconds =

40-

typeof value === "number"

41-

? value

42-

: typeof value === "string" && RETRY_AFTER_BODY_SECONDS_RE.test(value.trim())

43-

? Number(value.trim())

44-

: undefined;

45-

return Number.isFinite(seconds) && seconds >= 0 ? Math.max(0, seconds) : undefined;

46-

}

47-
4825

export function readRetryAfter(body: unknown, response: Response, fallbackSeconds = 0): number {

4926

const bodyValue =

5027

body && typeof body === "object" && "retry_after" in body

5128

? (body as { retry_after?: unknown }).retry_after

5229

: undefined;

5330

return (

54-

coerceRetryAfterSeconds(bodyValue) ??

55-

coerceRetryAfterSeconds(readRetryAfterHeader(response.headers.get("Retry-After"))) ??

31+

parseDiscordRetryAfterBodySeconds(bodyValue) ??

32+

parseRetryAfterHeaderSeconds(response.headers.get("Retry-After")) ??

5633

fallbackSeconds

5734

);

5835

}

Original file line numberDiff line numberDiff line change

@@ -532,13 +532,17 @@ describe("RequestClient", () => {

532532

await expectRateLimitError(client.get("/channels/c1/messages"), { retryAfter: 7 });

533533

});

534534
535-

it("rejects non-decimal Retry-After numeric strings", async () => {

535+

it.each([

536+

["hex", "0x10"],

537+

["fractional", "1.5"],

538+

["overflow", `1${"0".repeat(309)}`],

539+

])("rejects invalid Retry-After numeric strings: %s", async (_label, header) => {

536540

const client = new RequestClient("test-token", {

537541

queueRequests: false,

538542

fetch: async () =>

539543

new Response(JSON.stringify({ message: "Slow down", retry_after: "1e3", global: false }), {

540544

status: 429,

541-

headers: { "Retry-After": "0x10" },

545+

headers: { "Retry-After": header },

542546

}),

543547

});

544548
Original file line numberDiff line numberDiff line change

@@ -0,0 +1,33 @@

1+

const RETRY_AFTER_HEADER_DELAY_RE = /^\d+$/;

2+

const RETRY_AFTER_BODY_SECONDS_RE = /^(?:\d+\.?\d*|\.\d+)$/;

3+

const RETRY_AFTER_HTTP_DATE_RE =

4+

/^(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun), \d{2} (?:Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d{4} \d{2}:\d{2}:\d{2} GMT$/;

5+
6+

export function parseRetryAfterHeaderSeconds(

7+

value: string | null | undefined,

8+

now = Date.now(),

9+

): number | undefined {

10+

if (!value) {

11+

return undefined;

12+

}

13+

const trimmed = value.trim();

14+

if (RETRY_AFTER_HEADER_DELAY_RE.test(trimmed)) {

15+

const delaySeconds = Number(trimmed);

16+

return Number.isFinite(delaySeconds) ? delaySeconds : undefined;

17+

}

18+

if (!RETRY_AFTER_HTTP_DATE_RE.test(trimmed)) {

19+

return undefined;

20+

}

21+

const retryAt = Date.parse(trimmed);

22+

return Number.isFinite(retryAt) ? Math.max(0, (retryAt - now) / 1000) : undefined;

23+

}

24+
25+

export function parseDiscordRetryAfterBodySeconds(value: unknown): number | undefined {

26+

const seconds =

27+

typeof value === "number"

28+

? value

29+

: typeof value === "string" && RETRY_AFTER_BODY_SECONDS_RE.test(value.trim())

30+

? Number(value.trim())

31+

: undefined;

32+

return seconds !== undefined && Number.isFinite(seconds) && seconds >= 0 ? seconds : undefined;

33+

}