feat(atlas): add isInjectingContinuation flag to SessionState

Add flag to track when continuation is being injected to prevent
race conditions in boulder session management.

🤖 Generated with assistance of OhMyOpenCode
This commit is contained in:
YeonGyu-Kim
2026-04-05 15:33:54 +09:00
parent d5dfaaa3ad
commit c708d4e526
+1
View File
@@ -35,6 +35,7 @@ export type PendingTaskRef =
export interface SessionState {
lastEventWasAbortError?: boolean
lastContinuationInjectedAt?: number
isInjectingContinuation?: boolean
promptFailureCount: number
lastFailureAt?: number
pendingRetryTimer?: ReturnType<typeof setTimeout>