From db70faab42572b9ac339fa9c214391d6571257cb Mon Sep 17 00:00:00 2001 From: Ahmed Ibrahim Date: Tue, 25 Nov 2025 16:01:19 -0800 Subject: [PATCH] copy --- codex-rs/core/src/status.rs | 2 +- codex-rs/core/tests/suite/idle_warning.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/codex-rs/core/src/status.rs b/codex-rs/core/src/status.rs index 1682b9e856..aa307890de 100644 --- a/codex-rs/core/src/status.rs +++ b/codex-rs/core/src/status.rs @@ -84,7 +84,7 @@ impl IdleWarning { self.warning_sent = true; self.mark_event(); return Some(format!( - "Codex is facing an incident. Current status: {status}. Responses may be delayed or stalled." + "Codex is experiencing a {status}. If a response stalls, try again later. You can follow incident updates at status.openai.com." )); } diff --git a/codex-rs/core/tests/suite/idle_warning.rs b/codex-rs/core/tests/suite/idle_warning.rs index bc42dc309b..65c46f1aa6 100644 --- a/codex-rs/core/tests/suite/idle_warning.rs +++ b/codex-rs/core/tests/suite/idle_warning.rs @@ -66,7 +66,7 @@ async fn emits_warning_when_stream_is_idle_and_status_is_degraded() { }; assert_eq!( message, - "Codex is facing an incident. Current status: major outage. Responses may be delayed or stalled.", + "Codex is experiencing a major outage. If a response stalls, try again later. You can follow incident updates at status.openai.com.", "unexpected warning message" );