From b08f743dbc4f03afeb043e0b5160db7a2fb7f4e2 Mon Sep 17 00:00:00 2001 From: Brent Traut Date: Thu, 11 Jun 2026 18:19:11 -0700 Subject: [PATCH] codex: fix CI failure on PR #26009 # Conflicts: # codex-rs/tui/src/app/app_server_event_targets.rs --- codex-rs/tui/src/app/app_server_event_targets.rs | 3 ++- codex-rs/tui/src/chatwidget/protocol.rs | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/codex-rs/tui/src/app/app_server_event_targets.rs b/codex-rs/tui/src/app/app_server_event_targets.rs index 212c45b4be..2bb32ea479 100644 --- a/codex-rs/tui/src/app/app_server_event_targets.rs +++ b/codex-rs/tui/src/app/app_server_event_targets.rs @@ -161,7 +161,8 @@ pub(super) fn server_notification_thread_target( None => return ServerNotificationThreadTarget::AppScoped, } } - ServerNotification::SkillsChanged(_) + ServerNotification::ThreadCatalogChanged(_) + | ServerNotification::SkillsChanged(_) | ServerNotification::McpServerOauthLoginCompleted(_) | ServerNotification::AccountUpdated(_) | ServerNotification::AccountRateLimitsUpdated(_) diff --git a/codex-rs/tui/src/chatwidget/protocol.rs b/codex-rs/tui/src/chatwidget/protocol.rs index 085255a1cf..31906880bc 100644 --- a/codex-rs/tui/src/chatwidget/protocol.rs +++ b/codex-rs/tui/src/chatwidget/protocol.rs @@ -191,6 +191,7 @@ impl ChatWidget { ServerNotification::ServerRequestResolved(_) | ServerNotification::AccountUpdated(_) | ServerNotification::AccountRateLimitsUpdated(_) + | ServerNotification::ThreadCatalogChanged(_) | ServerNotification::ThreadStarted(_) | ServerNotification::ThreadStatusChanged(_) | ServerNotification::ThreadArchived(_)