Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions codex-rs/core/src/state_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,15 @@ pub(crate) async fn init_if_enabled(
}
};
if backfill_state.status != codex_state::BackfillStatus::Complete {
metadata::backfill_sessions(runtime.as_ref(), config, otel).await;
let runtime_for_backfill = runtime.clone();
let config = config.clone();
let otel = otel.cloned();
tokio::spawn(async move {
metadata::backfill_sessions(runtime_for_backfill.as_ref(), &config, otel.as_ref())
.await;
});
}
require_backfill_complete(runtime, config.codex_home.as_path()).await
Some(runtime)
}

/// Get the DB if the feature is enabled and the DB exists.
Expand Down
2 changes: 1 addition & 1 deletion codex-rs/state/src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ use std::time::Duration;
use tracing::warn;

pub const STATE_DB_FILENAME: &str = "state";
pub const STATE_DB_VERSION: u32 = 3;
pub const STATE_DB_VERSION: u32 = 4;

const METRIC_DB_INIT: &str = "codex.db.init";

Expand Down
Loading