This commit is contained in:
Ahmed Ibrahim
2025-11-25 16:01:19 -08:00
parent 1e7796570a
commit db70faab42
2 changed files with 2 additions and 2 deletions

View File

@@ -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."
));
}

View File

@@ -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"
);