pod: stop intake after ready idle

This commit is contained in:
2026-06-08 17:00:37 +09:00
parent 64318e8045
commit 61c323189c
9 changed files with 252 additions and 1 deletions
+3
View File
@@ -1671,6 +1671,7 @@ async fn restore_workspace_companion_pod(
runtime_command,
pod_name: pod_name.to_string(),
profile: None,
ticket_role: None,
workspace_root: workspace_root.to_path_buf(),
resume_from: None,
};
@@ -1686,6 +1687,7 @@ async fn spawn_workspace_companion_pod(
runtime_command,
pod_name: pod_name.to_string(),
profile: None,
ticket_role: None,
workspace_root: workspace_root.to_path_buf(),
resume_from: None,
};
@@ -1701,6 +1703,7 @@ async fn restore_orchestrator_pod(
runtime_command,
pod_name: pod_name.to_string(),
profile: None,
ticket_role: None,
workspace_root: workspace_root.to_path_buf(),
resume_from: None,
};
+1
View File
@@ -378,6 +378,7 @@ async fn wait_for_ready(
runtime_command: runtime_command.clone(),
pod_name: form.name.clone(),
profile: form.selected_profile_selector(),
ticket_role: None,
workspace_root: form.cwd.clone(),
resume_from: form.resume_from,
};