fix: show active retry interruptions in liveness

This commit is contained in:
AgentRun Codex
2026-06-11 21:00:29 +08:00
parent 68ef21421a
commit 4a5b298a30
2 changed files with 29 additions and 5 deletions
+3
View File
@@ -213,6 +213,9 @@ function compactTerminalClassification(record: JsonRecord): JsonRecord {
providerInterruption: stringJsonValue(record.providerInterruption),
providerInterruptionKnown: record.providerInterruptionKnown === true,
providerInterruptionReason: boundedJsonString(record.providerInterruptionReason, 240),
retryInterruptionObserved: record.retryInterruptionObserved === true,
retryInterruptionSeq: numberJsonValue(record.retryInterruptionSeq),
retryInterruptionKind: stringJsonValue(record.retryInterruptionKind),
hardTimeout: record.hardTimeout === true,
idleTimeout: record.idleTimeout === true,
timeoutKind: stringJsonValue(record.timeoutKind),