From 6014b6679ffbd92eeddffa3ad7b4402be6a7fefe Mon Sep 17 00:00:00 2001 From: Owen Lin Date: Thu, 30 Apr 2026 15:06:04 -0700 Subject: [PATCH] =?UTF-8?q?fix=20flaky=20test=20falls=5Fback=5Fto=5Fregist?= =?UTF-8?q?ered=5Ffallback=5Fport=5Fwhen=5Fdefault=5Fpo=E2=80=A6=20(#20504?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …rt_is_in_use --- codex-rs/login/src/server.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/login/src/server.rs b/codex-rs/login/src/server.rs index 8e398ce89..9b6f835bb 100644 --- a/codex-rs/login/src/server.rs +++ b/codex-rs/login/src/server.rs @@ -129,7 +129,7 @@ pub struct ShutdownHandle { impl ShutdownHandle { /// Signals the login loop to terminate. pub fn shutdown(&self) { - self.shutdown_notify.notify_waiters(); + self.shutdown_notify.notify_one(); } }