File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ export const resolveAgentRecoveryAction = (
1818 if ( session . runtimeLiveness === "attached" ) {
1919 return null ;
2020 }
21+ if ( session . runtimeLiveness === "runtime_missing" ) {
22+ return null ;
23+ }
2124 if ( session . terminalRuntimeId && ! session . runtimeLiveness ) {
2225 return null ;
2326 }
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export type SessionMode = "branch" | "git_tree";
1212export type QueueTaskStatus = "queued" | "running" | "done" ;
1313export type AgentMessageRole = "system" | "user" | "agent" ;
1414export type AgentProvider = string ;
15- export type SessionRuntimeLiveness = "attached" | "provider_exited" | "tmux_missing " ;
15+ export type SessionRuntimeLiveness = "attached" | "provider_exited" | "runtime_missing " ;
1616
1717export type ExecTarget =
1818 | { type : "native" }
You can’t perform that action at this time.
0 commit comments