remove useless prints

This commit is contained in:
Tamo
2024-11-20 12:27:12 +01:00
parent 56eacd221f
commit 7e379b3d14
3 changed files with 0 additions and 10 deletions

View File

@ -76,13 +76,6 @@ fn update_index_stats(
) -> anyhow::Result<()> {
let ctx = || format!("while updating index stats for index `{index_uid}`");
let stats: Option<&str> = index_stats
.remap_data_type::<Str>()
.get(sched_wtxn, &index_uuid)
.with_context(ctx)
.with_context(|| "While reading value")?;
dbg!(stats);
let stats: Option<v1_9::IndexStats> = index_stats
.remap_data_type::<SerdeJson<v1_9::IndexStats>>()
.get(sched_wtxn, &index_uuid)