From 668325efdeba5cd20305a73f94e905a1bbdf4e62 Mon Sep 17 00:00:00 2001 From: Eric Traut Date: Sun, 12 Apr 2026 08:41:52 -0700 Subject: [PATCH] codex: address PR review feedback (#17380) --- codex-rs/state/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/state/src/lib.rs b/codex-rs/state/src/lib.rs index 3030dba889..8d4a9cd2a6 100644 --- a/codex-rs/state/src/lib.rs +++ b/codex-rs/state/src/lib.rs @@ -65,7 +65,7 @@ pub const SQLITE_HOME_ENV: &str = "CODEX_SQLITE_HOME"; pub const LOGS_DB_FILENAME: &str = "logs"; pub const LOGS_DB_VERSION: u32 = 2; pub const STATE_DB_FILENAME: &str = "state"; -pub const STATE_DB_VERSION: u32 = 6; +pub const STATE_DB_VERSION: u32 = 5; /// Errors encountered during DB operations. Tags: [stage] pub const DB_ERROR_METRIC: &str = "codex.db.error";