From 2de65721382d1d5b0c6edb4b7109b14b89f5461f Mon Sep 17 00:00:00 2001 From: Eric Traut Date: Mon, 18 May 2026 18:20:24 -0700 Subject: [PATCH] Fix thread settings notification client match --- codex-rs/app-server-client/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/app-server-client/src/lib.rs b/codex-rs/app-server-client/src/lib.rs index 46fc3d862e..d4553c639f 100644 --- a/codex-rs/app-server-client/src/lib.rs +++ b/codex-rs/app-server-client/src/lib.rs @@ -176,7 +176,7 @@ pub(crate) fn server_notification_requires_delivery(notification: &ServerNotific matches!( notification, ServerNotification::TurnCompleted(_) - | ServerNotification::ThreadTurnContextUpdated(_) + | ServerNotification::ThreadSettingsUpdated(_) | ServerNotification::ItemCompleted(_) | ServerNotification::AgentMessageDelta(_) | ServerNotification::PlanDelta(_)