From 9e506da9243af584dd671cb36e8275fe7c5b7f14 Mon Sep 17 00:00:00 2001 From: Max Johnson Date: Wed, 11 Feb 2026 11:42:11 -0800 Subject: [PATCH] app-server: thread resume behavior updates --- codex-rs/app-server/src/message_processor.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/codex-rs/app-server/src/message_processor.rs b/codex-rs/app-server/src/message_processor.rs index e7d4a0b619..5a19fe246d 100644 --- a/codex-rs/app-server/src/message_processor.rs +++ b/codex-rs/app-server/src/message_processor.rs @@ -402,6 +402,12 @@ impl MessageProcessor { .await; } + pub(crate) async fn connection_closed(&mut self, connection_id: ConnectionId) { + self.codex_message_processor + .connection_closed(connection_id) + .await; + } + /// Handle a standalone JSON-RPC response originating from the peer. pub(crate) async fn process_response(&mut self, response: JSONRPCResponse) { tracing::info!("<- response: {:?}", response);