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,