From b7f72a0dc4464e902fc80c287645315e4d5eca03 Mon Sep 17 00:00:00 2001 From: Eric Traut Date: Sun, 12 Apr 2026 17:17:20 -0700 Subject: [PATCH] codex: address PR review feedback (#17580) --- codex-rs/core/src/codex/timer_runtime.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codex-rs/core/src/codex/timer_runtime.rs b/codex-rs/core/src/codex/timer_runtime.rs index f3c66d633e..167d7cde4c 100644 --- a/codex-rs/core/src/codex/timer_runtime.rs +++ b/codex-rs/core/src/codex/timer_runtime.rs @@ -235,8 +235,8 @@ impl Session { return; } match self.maybe_start_pending_message().await { - PendingMessageStart::Started | PendingMessageStart::NotReady => return, - PendingMessageStart::None => {} + PendingMessageStart::Started => return, + PendingMessageStart::NotReady | PendingMessageStart::None => {} } self.try_start_pending_timer(RecurringTimerPolicy::IncludeAll) .await;