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

推荐订阅源

雷峰网
雷峰网
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
博客园_首页
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
美团技术团队
小众软件
小众软件
Jina AI
Jina AI
S
SegmentFault 最新的问题
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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(tui): surface terminal lifecycle errors · openclaw/op...
zhangguiping · 2026-05-31 · via Recent Commits to openclaw:main

@@ -51,6 +51,7 @@ type EventHandlerContext = {

5151

};

52525353

const DEFAULT_STREAMING_WATCHDOG_MS = 30_000;

54+

const LIFECYCLE_ERROR_RETRY_GRACE_MS = 15_000;

5455

const STREAMING_WATCHDOG_USER_MESSAGE =

5556

"This response is taking longer than expected. Still waiting for the current run.";

5657

@@ -80,6 +81,10 @@ export function createEventHandlers(context: EventHandlerContext) {

8081

let lastSessionKey = state.currentSessionKey;

8182

let pendingHistoryRefresh = false;

8283

let reconnectPendingRunId: string | null = null;

84+

const pendingTerminalLifecycleErrors = new Map<

85+

string,

86+

{ errorMessage: string; timer: ReturnType<typeof setTimeout> }

87+

>();

83888489

const streamingWatchdogMs =

8590

typeof context.streamingWatchdogMs === "number" &&

@@ -106,6 +111,22 @@ export function createEventHandlers(context: EventHandlerContext) {

106111

streamingWatchdogRunId = null;

107112

};

108113114+

const clearPendingTerminalLifecycleError = (runId: string) => {

115+

const pending = pendingTerminalLifecycleErrors.get(runId);

116+

if (!pending) {

117+

return;

118+

}

119+

clearTimeout(pending.timer);

120+

pendingTerminalLifecycleErrors.delete(runId);

121+

};

122+123+

const clearPendingTerminalLifecycleErrors = () => {

124+

for (const pending of pendingTerminalLifecycleErrors.values()) {

125+

clearTimeout(pending.timer);

126+

}

127+

pendingTerminalLifecycleErrors.clear();

128+

};

129+109130

const pauseStreamingWatchdog = () => {

110131

clearStreamingWatchdog();

111132

};

@@ -182,6 +203,7 @@ export function createEventHandlers(context: EventHandlerContext) {

182203

reconnectPendingRunId = null;

183204

clearLocalRunIds?.();

184205

clearLocalBtwRunIds?.();

206+

clearPendingTerminalLifecycleErrors();

185207

btw.clear();

186208

clearStreamingWatchdog();

187209

};

@@ -336,6 +358,46 @@ export function createEventHandlers(context: EventHandlerContext) {

336358

void refreshSessionInfo?.();

337359

};

338360361+

const renderTerminalRunError = (params: {

362+

runId: string;

363+

errorMessage: string;

364+

requireActiveOrPending?: boolean;

365+

}): boolean => {

366+

const { runId, errorMessage } = params;

367+

const wasActiveRun = state.activeChatRunId === runId;

368+

if (

369+

params.requireActiveOrPending === true &&

370+

!wasActiveRun &&

371+

state.pendingChatRunId !== runId

372+

) {

373+

return false;

374+

}

375+

const renderedError = formatRawAssistantErrorForUi(errorMessage);

376+

chatLog.dismissPendingSystem(runId);

377+

chatLog.addSystem(resolveAuthErrorHint(errorMessage) ?? `run error: ${renderedError}`);

378+

noteFinalizedRun(runId, { displayedFinal: true });

379+

terminateRun({ runId, wasActiveRun, status: "error" });

380+

maybeRefreshHistoryForRun(runId);

381+

return true;

382+

};

383+384+

const renderTerminalLifecycleError = (runId: string, errorMessage: string) => {

385+

if (!renderTerminalRunError({ runId, errorMessage, requireActiveOrPending: true })) {

386+

return;

387+

}

388+

tui.requestRender(true);

389+

};

390+391+

const scheduleTerminalLifecycleError = (runId: string, errorMessage: string) => {

392+

clearPendingTerminalLifecycleError(runId);

393+

const timer = setTimeout(() => {

394+

pendingTerminalLifecycleErrors.delete(runId);

395+

renderTerminalLifecycleError(runId, errorMessage);

396+

}, LIFECYCLE_ERROR_RETRY_GRACE_MS);

397+

timer.unref?.();

398+

pendingTerminalLifecycleErrors.set(runId, { errorMessage, timer });

399+

};

400+339401

const hasConcurrentActiveRun = (runId: string) => {

340402

const activeRunId = state.activeChatRunId;

341403

if (!activeRunId || activeRunId === runId) {

@@ -463,6 +525,10 @@ export function createEventHandlers(context: EventHandlerContext) {

463525

if (evt.state === "delta") {

464526

return;

465527

}

528+

if (evt.state === "error" && finalizedRunsWithDisplay.has(evt.runId)) {

529+

clearStaleStreamingIfNoTrackedRunRemains();

530+

return;

531+

}

466532

if (evt.state === "final") {

467533

const hasLateDisplayableFinal =

468534

hasDisplayableFinalEvent(evt) && !finalizedRunsWithDisplay.has(evt.runId);

@@ -475,6 +541,7 @@ export function createEventHandlers(context: EventHandlerContext) {

475541

if (reconnectPendingRunId === evt.runId) {

476542

reconnectPendingRunId = null;

477543

}

544+

clearPendingTerminalLifecycleError(evt.runId);

478545

chatLog.dismissPendingSystem(evt.runId);

479546

noteSessionRun(evt.runId);

480547

if (!state.activeChatRunId && !isLocalBtwRunId?.(evt.runId)) {

@@ -567,12 +634,10 @@ export function createEventHandlers(context: EventHandlerContext) {

567634

}

568635

if (evt.state === "error") {

569636

forgetLocalBtwRunId?.(evt.runId);

570-

const wasActiveRun = state.activeChatRunId === evt.runId;

571-

const errorMessage = evt.errorMessage ?? "unknown";

572-

const renderedError = formatRawAssistantErrorForUi(errorMessage);

573-

chatLog.addSystem(resolveAuthErrorHint(errorMessage) ?? `run error: ${renderedError}`);

574-

terminateRun({ runId: evt.runId, wasActiveRun, status: "error" });

575-

maybeRefreshHistoryForRun(evt.runId);

637+

renderTerminalRunError({

638+

runId: evt.runId,

639+

errorMessage: evt.errorMessage ?? "unknown",

640+

});

576641

}

577642

tui.requestRender();

578643

};

@@ -651,6 +716,9 @@ export function createEventHandlers(context: EventHandlerContext) {

651716

}

652717

}

653718

const phase = typeof evt.data?.phase === "string" ? evt.data.phase : "";

719+

if (phase && phase !== "error") {

720+

clearPendingTerminalLifecycleError(evt.runId);

721+

}

654722

const isPostFinalizingRun = postFinalizingRuns.has(evt.runId);

655723

const isPostFinalTerminalPhase =

656724

isPostFinalizingRun && (phase === "end" || phase === "error");

@@ -687,7 +755,19 @@ export function createEventHandlers(context: EventHandlerContext) {

687755

if (!canUpdateActivityStatus) {

688756

return;

689757

}

690-

setActivityStatus("error");

758+

const isTerminalLifecycleError = typeof evt.data?.endedAt === "number";

759+

if (isTerminalLifecycleError && (isActiveRun || isPendingRun)) {

760+

const errorMessage =

761+

typeof evt.data?.error === "string"

762+

? evt.data.error

763+

: typeof evt.data?.errorMessage === "string"

764+

? evt.data.errorMessage

765+

: "unknown";

766+

scheduleTerminalLifecycleError(evt.runId, errorMessage);

767+

setActivityStatus("error");

768+

} else {

769+

setActivityStatus("error");

770+

}

691771

}

692772

tui.requestRender();

693773

}

@@ -723,6 +803,7 @@ export function createEventHandlers(context: EventHandlerContext) {

723803724804

const dispose = () => {

725805

clearStreamingWatchdog();

806+

clearPendingTerminalLifecycleErrors();

726807

};

727808728809

return {