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

推荐订阅源

IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
雷峰网
雷峰网
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
P
Proofpoint News Feed
The Cloudflare Blog
D
Docker
大猫的无限游戏
大猫的无限游戏

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): clear reply run before followup drain · ope...
steipete · 2026-05-05 · via Recent Commits to openclaw:main

@@ -46,7 +46,6 @@ import { runAgentTurnWithFallback } from "./agent-runner-execution.js";

4646

import {

4747

createShouldEmitToolOutput,

4848

createShouldEmitToolResult,

49-

finalizeWithFollowup,

5049

isAudioPayload,

5150

signalTypingIfNeeded,

5251

} from "./agent-runner-helpers.js";

@@ -71,6 +70,7 @@ import {

7170

enqueueFollowupRun,

7271

refreshQueuedFollowupSession,

7372

resolvePiSteeringModeForQueueMode,

73+

scheduleFollowupDrain,

7474

type FollowupRun,

7575

type QueueSettings,

7676

} from "./queue.js";

@@ -1064,7 +1064,7 @@ export async function runReplyAgent(params: {

10641064

// the followup queue idle if the original run already finished.

10651065

const queuedBehindActiveRun = isRunActive?.() === true;

10661066

if (!queuedBehindActiveRun) {

1067-

finalizeWithFollowup(undefined, queueKey, queuedRunFollowupTurn);

1067+

scheduleFollowupDrain(queueKey, queuedRunFollowupTurn);

10681068

}

10691069

await touchActiveSessionEntry();

10701070

if (queuedBehindActiveRun) {

@@ -1148,6 +1148,11 @@ export async function runReplyAgent(params: {

11481148

throw error;

11491149

}

11501150

let runFollowupTurn = queuedRunFollowupTurn;

1151+

let shouldDrainFollowupsAfterReplyOperationClears = false;

1152+

const returnAfterReplyOperationClearsThenDrainFollowups = <T>(value: T): T => {

1153+

shouldDrainFollowupsAfterReplyOperationClears = true;

1154+

return value;

1155+

};

11511156

const prePreflightCompactionCount = activeSessionEntry?.compactionCount ?? 0;

11521157

let preflightCompactionApplied = false;

11531158

@@ -1283,7 +1288,7 @@ export async function runReplyAgent(params: {

12831288

if (!replyOperation.result) {

12841289

replyOperation.fail("run_failed", new Error("reply operation exited with final payload"));

12851290

}

1286-

return finalizeWithFollowup(runOutcome.payload, queueKey, runFollowupTurn);

1291+

return returnAfterReplyOperationClearsThenDrainFollowups(runOutcome.payload);

12871292

}

1288129312891294

const {

@@ -1416,7 +1421,7 @@ export async function runReplyAgent(params: {

14161421

// Otherwise, a late typing trigger (e.g. from a tool callback) can outlive the run and

14171422

// keep the typing indicator stuck.

14181423

if (payloadArray.length === 0) {

1419-

return finalizeWithFollowup(undefined, queueKey, runFollowupTurn);

1424+

return returnAfterReplyOperationClearsThenDrainFollowups(undefined);

14201425

}

1421142614221427

const currentMessageId = sessionCtx.MessageSidFull ?? sessionCtx.MessageSid;

@@ -1448,7 +1453,7 @@ export async function runReplyAgent(params: {

14481453

didLogHeartbeatStrip = payloadResult.didLogHeartbeatStrip;

1449145414501455

if (replyPayloads.length === 0) {

1451-

return finalizeWithFollowup(undefined, queueKey, runFollowupTurn);

1456+

return returnAfterReplyOperationClearsThenDrainFollowups(undefined);

14521457

}

1453145814541459

const successfulCronAdds = runResult.successfulCronAdds ?? 0;

@@ -1865,10 +1870,8 @@ export async function runReplyAgent(params: {

18651870

}

18661871

}

186718721868-

const result = finalizeWithFollowup(

1873+

const result = returnAfterReplyOperationClearsThenDrainFollowups(

18691874

finalPayloads.length === 1 ? finalPayloads[0] : finalPayloads,

1870-

queueKey,

1871-

runFollowupTurn,

18721875

);

1873187618741877

return result;

@@ -1877,38 +1880,37 @@ export async function runReplyAgent(params: {

18771880

replyOperation.result?.kind === "aborted" &&

18781881

replyOperation.result.code === "aborted_for_restart"

18791882

) {

1880-

return finalizeWithFollowup(

1881-

{ text: "⚠️ Gateway is restarting. Please wait a few seconds and try again." },

1882-

queueKey,

1883-

runFollowupTurn,

1884-

);

1883+

return returnAfterReplyOperationClearsThenDrainFollowups({

1884+

text: "⚠️ Gateway is restarting. Please wait a few seconds and try again.",

1885+

});

18851886

}

18861887

if (replyOperation.result?.kind === "aborted") {

1887-

return finalizeWithFollowup({ text: SILENT_REPLY_TOKEN }, queueKey, runFollowupTurn);

1888+

return returnAfterReplyOperationClearsThenDrainFollowups({ text: SILENT_REPLY_TOKEN });

18881889

}

18891890

if (error instanceof GatewayDrainingError) {

18901891

replyOperation.fail("gateway_draining", error);

1891-

return finalizeWithFollowup(

1892-

{ text: "⚠️ Gateway is restarting. Please wait a few seconds and try again." },

1893-

queueKey,

1894-

runFollowupTurn,

1895-

);

1892+

return returnAfterReplyOperationClearsThenDrainFollowups({

1893+

text: "⚠️ Gateway is restarting. Please wait a few seconds and try again.",

1894+

});

18961895

}

18971896

if (error instanceof CommandLaneClearedError) {

18981897

replyOperation.fail("command_lane_cleared", error);

1899-

return finalizeWithFollowup(

1900-

{ text: "⚠️ Gateway is restarting. Please wait a few seconds and try again." },

1901-

queueKey,

1902-

runFollowupTurn,

1903-

);

1898+

return returnAfterReplyOperationClearsThenDrainFollowups({

1899+

text: "⚠️ Gateway is restarting. Please wait a few seconds and try again.",

1900+

});

19041901

}

19051902

replyOperation.fail("run_failed", error);

19061903

// Keep the followup queue moving even when an unexpected exception escapes

19071904

// the run path; the caller still receives the original error.

1908-

finalizeWithFollowup(undefined, queueKey, runFollowupTurn);

1905+

returnAfterReplyOperationClearsThenDrainFollowups(undefined);

19091906

throw error;

19101907

} finally {

19111908

replyOperation.complete();

1909+

if (shouldDrainFollowupsAfterReplyOperationClears) {

1910+

// Same-session follow-up turns create their own ReplyOperation; start them

1911+

// only after this run clears the active-run guard.

1912+

scheduleFollowupDrain(queueKey, runFollowupTurn);

1913+

}

19121914

blockReplyPipeline?.stop();

19131915

typing.markRunComplete();

19141916

// Safety net: the dispatcher's onIdle callback normally fires