From 39445f3d64ccf9e4370b564e256c53b144bf4318 Mon Sep 17 00:00:00 2001 From: jif-oai Date: Mon, 2 Feb 2026 11:35:56 +0000 Subject: [PATCH 1/2] fix: thread listing --- codex-rs/core/src/rollout/list.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/codex-rs/core/src/rollout/list.rs b/codex-rs/core/src/rollout/list.rs index 18e862c7f01c..a66986724adb 100644 --- a/codex-rs/core/src/rollout/list.rs +++ b/codex-rs/core/src/rollout/list.rs @@ -983,6 +983,11 @@ async fn read_head_summary(path: &Path, head_limit: usize) -> io::Result Date: Mon, 2 Feb 2026 11:41:57 +0000 Subject: [PATCH 2/2] fix: thread listing --- codex-rs/core/src/state_db.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/core/src/state_db.rs b/codex-rs/core/src/state_db.rs index 3e5beaa87e22..a52f46593a47 100644 --- a/codex-rs/core/src/state_db.rs +++ b/codex-rs/core/src/state_db.rs @@ -277,7 +277,7 @@ pub async fn apply_rollout_items( pub fn record_discrepancy(stage: &str, reason: &str) { // We access the global metric because the call sites might not have access to the broader // OtelManager. - tracing::warn!("state db record_discrepancy: {stage}{reason}"); + tracing::warn!("state db record_discrepancy: {stage}, {reason}"); if let Some(metric) = codex_otel::metrics::global() { let _ = metric.counter( DB_METRIC_COMPARE_ERROR,