fix small typo in store.rs

This commit is contained in:
tremor021
2026-05-19 17:18:10 +02:00
parent ba28369202
commit 79b9f07888
+1 -1
View File
@@ -442,7 +442,7 @@ impl NewIndexWriter {
.commit()
.map_err(|e| raise_error!(format!("{e:#?}"), ErrorCode::InternalError))?;
}
println!("tantivy commit elasped: {:#?}", start.elapsed());
println!("tantivy commit elapsed: {:#?}", start.elapsed());
tracing::info!(count = self.pending, "committed tantivy batch");
self.pending = 0;
Ok(())