From 49ee35b86cb60426e4378d49d385aff73cc566d2 Mon Sep 17 00:00:00 2001 From: jif-oai Date: Mon, 26 Jan 2026 18:47:51 +0000 Subject: [PATCH] better message --- codex-rs/core/src/agent/collab_completion_warning.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/core/src/agent/collab_completion_warning.rs b/codex-rs/core/src/agent/collab_completion_warning.rs index 058f0e4a73..14030b51a0 100644 --- a/codex-rs/core/src/agent/collab_completion_warning.rs +++ b/codex-rs/core/src/agent/collab_completion_warning.rs @@ -60,5 +60,5 @@ async fn wait_for_final_status(session: &Session, agent_id: ThreadId) -> Option< } fn completion_warning_message(agent_id: ThreadId, status: &AgentStatus) -> String { - format!("Sub-agent {agent_id} finished with status {status:?}. Use wait to collect the result.") + format!("Sub-agent {agent_id} finished with status {status:?}. Keep working.") }