From c0b50b4ddc191312da66377fe2a5c7638510610f Mon Sep 17 00:00:00 2001 From: Ahmed Ibrahim Date: Sat, 7 Mar 2026 02:43:59 -0800 Subject: [PATCH] codex: add missing initialize forwarding hook (#13593) --- 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 5bdc31e14c..a8497bf0fc 100644 --- a/codex-rs/app-server/src/message_processor.rs +++ b/codex-rs/app-server/src/message_processor.rs @@ -460,6 +460,12 @@ impl MessageProcessor { self.codex_message_processor.thread_created_receiver() } + pub(crate) async fn connection_initialized(&self, connection_id: ConnectionId) { + self.codex_message_processor + .connection_initialized(connection_id) + .await; + } + pub(crate) async fn send_initialize_notifications_to_connection( &self, connection_id: ConnectionId,