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

推荐订阅源

B
Blog
Microsoft Security Blog
Microsoft Security Blog
Jina AI
Jina AI
博客园 - 叶小钗
J
Java Code Geeks
博客园 - 聂微东
博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
美团技术团队
WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
罗磊的独立博客
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
The Cloudflare Blog
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
小众软件
小众软件

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(gateway): honor restart continuation retry budget · o...
obviyus · 2026-05-09 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -89,13 +89,26 @@ const mocks = vi.hoisted(() => {

8989

if (!state.queuedSessionDelivery) {

9090

return;

9191

}

92-

const entry = {

92+

const entry: Record<string, unknown> & {

93+

id: string;

94+

enqueuedAt: number;

95+

retryCount: number;

96+

} = {

9397

id: "session-delivery-1",

9498

enqueuedAt: 1,

9599

retryCount: 0,

96100

...state.queuedSessionDelivery,

97101

};

98-

if (!params.selectEntry(entry, Date.now()).match) {

102+

const decision = params.selectEntry(entry, Date.now());

103+

if (!decision.match) {

104+

return;

105+

}

106+

const maxRetries = typeof entry["maxRetries"] === "number" ? entry["maxRetries"] : 5;

107+

if (entry.retryCount >= maxRetries) {

108+

state.queuedSessionDelivery = null;

109+

params.log.warn(

110+

`${params.logLabel}: entry ${entry.id} exceeded max retries and was moved to failed/`,

111+

);

99112

return;

100113

}

101114

try {

Original file line numberDiff line numberDiff line change

@@ -432,13 +432,15 @@ function buildQueuedRestartContinuation(params: {

432432

text: params.continuation.text,

433433

...(params.deliveryContext ? { deliveryContext: params.deliveryContext } : {}),

434434

idempotencyKey,

435+

maxRetries: RESTART_CONTINUATION_BUSY_MAX_ATTEMPTS,

435436

};

436437

}

437438

return {

438439

kind: "agentTurn",

439440

sessionKey: params.sessionKey,

440441

message: params.continuation.message,

441442

messageId: idempotencyKey,

443+

maxRetries: RESTART_CONTINUATION_BUSY_MAX_ATTEMPTS,

442444

...(params.route ? { route: params.route } : {}),

443445

...(params.deliveryContext ? { deliveryContext: params.deliveryContext } : {}),

444446

idempotencyKey,

@@ -613,7 +615,6 @@ async function loadRestartSentinelStartupTask(params: {

613615

await removeRestartSentinelFile(sentinelPath);

614616

const routedAgentTurnContinuation =

615617

payload.continuation?.kind === "agentTurn" && continuationRoute !== undefined;

616-

// The routed continuation is the wake; a parallel heartbeat wake can steal the session.

617618

if (!routedAgentTurnContinuation) {

618619

enqueueRestartSentinelWake(message, sessionKey, wakeDeliveryContext);

619620

}

Original file line numberDiff line numberDiff line change

@@ -68,6 +68,10 @@ function computeSessionDeliveryBackoffMs(retryCount: number): number {

6868

return BACKOFF_MS[Math.min(retryCount - 1, BACKOFF_MS.length - 1)] ?? BACKOFF_MS.at(-1) ?? 0;

6969

}

7070
71+

function resolveSessionDeliveryMaxRetries(entry: QueuedSessionDelivery): number {

72+

return entry.maxRetries ?? MAX_SESSION_DELIVERY_RETRIES;

73+

}

74+
7175

export function isSessionDeliveryEligibleForRetry(

7276

entry: QueuedSessionDelivery,

7377

now: number,

@@ -153,7 +157,7 @@ export async function drainPendingSessionDeliveries(opts: {

153157

if (!currentDecision.match) {

154158

continue;

155159

}

156-

if (currentEntry.retryCount >= MAX_SESSION_DELIVERY_RETRIES) {

160+

if (currentEntry.retryCount >= resolveSessionDeliveryMaxRetries(currentEntry)) {

157161

try {

158162

await moveSessionDeliveryToFailed(currentEntry.id, opts.stateDir);

159163

} catch (err) {

@@ -229,7 +233,7 @@ export async function recoverPendingSessionDeliveries(opts: {

229233

if (opts.maxEnqueuedAt != null && currentEntry.enqueuedAt > opts.maxEnqueuedAt) {

230234

continue;

231235

}

232-

if (currentEntry.retryCount >= MAX_SESSION_DELIVERY_RETRIES) {

236+

if (currentEntry.retryCount >= resolveSessionDeliveryMaxRetries(currentEntry)) {

233237

summary.skippedMaxRetries += 1;

234238

try {

235239

await moveSessionDeliveryToFailed(currentEntry.id, opts.stateDir);

Original file line numberDiff line numberDiff line change

@@ -27,6 +27,10 @@ type SessionDeliveryContext = {

2727

threadId?: string | number;

2828

};

2929
30+

type SessionDeliveryRetryPolicy = {

31+

maxRetries?: number;

32+

};

33+
3034

export type SessionDeliveryRoute = {

3135

channel: string;

3236

to: string;

@@ -37,22 +41,22 @@ export type SessionDeliveryRoute = {

3741

};

3842
3943

export type QueuedSessionDeliveryPayload =

40-

| {

44+

| ({

4145

kind: "systemEvent";

4246

sessionKey: string;

4347

text: string;

4448

deliveryContext?: SessionDeliveryContext;

4549

idempotencyKey?: string;

46-

}

47-

| {

50+

} & SessionDeliveryRetryPolicy)

51+

| ({

4852

kind: "agentTurn";

4953

sessionKey: string;

5054

message: string;

5155

messageId: string;

5256

route?: SessionDeliveryRoute;

5357

deliveryContext?: SessionDeliveryContext;

5458

idempotencyKey?: string;

55-

};

59+

} & SessionDeliveryRetryPolicy);

5660
5761

export type QueuedSessionDelivery = QueuedSessionDeliveryPayload & {

5862

id: string;

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,7 @@

11

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

22

import { withTempDir } from "../test-helpers/temp-dir.js";

33

import {

4+

drainPendingSessionDeliveries,

45

enqueueSessionDelivery,

56

failSessionDelivery,

67

isSessionDeliveryEligibleForRetry,

@@ -68,6 +69,44 @@ describe("session-delivery queue recovery", () => {

6869

});

6970

});

7071
72+

it("uses the entry retry budget when draining entries", async () => {

73+

await withTempDir({ prefix: "openclaw-session-delivery-" }, async (tempDir) => {

74+

const id = await enqueueSessionDelivery(

75+

{

76+

kind: "agentTurn",

77+

sessionKey: "agent:main:main",

78+

message: "continue",

79+

messageId: "restart-sentinel:agent:main:main:agentTurn:123",

80+

maxRetries: 20,

81+

},

82+

tempDir,

83+

);

84+

for (let attempt = 0; attempt < 5; attempt += 1) {

85+

await failSessionDelivery(id, "busy", tempDir);

86+

}

87+
88+

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

89+

await drainPendingSessionDeliveries({

90+

drainKey: "test-restart-continuation",

91+

logLabel: "test restart continuation",

92+

deliver,

93+

stateDir: tempDir,

94+

log: {

95+

info: vi.fn(),

96+

warn: vi.fn(),

97+

error: vi.fn(),

98+

},

99+

selectEntry: (entry) => ({

100+

match: entry.id === id,

101+

bypassBackoff: true,

102+

}),

103+

});

104+
105+

expect(deliver).toHaveBeenCalledTimes(1);

106+

expect(await loadPendingSessionDeliveries(tempDir)).toEqual([]);

107+

});

108+

});

109+
71110

it("skips entries queued after the startup recovery cutoff", async () => {

72111

vi.useFakeTimers();

73112

vi.setSystemTime(new Date("2026-04-23T00:00:00.000Z"));