fix the bad index version on opening

This commit is contained in:
Tamo 2025-01-23 12:31:10 +01:00 committed by Louis Dureuil
parent 4f21ee6c66
commit 7197ced673
No known key found for this signature in database
16 changed files with 31 additions and 21 deletions

View file

@ -63,7 +63,7 @@ fn main() {
Some(path) => TempDir::new_in(path).unwrap(),
None => TempDir::new().unwrap(),
};
let index = Index::new(options, tempdir.path()).unwrap();
let index = Index::new(options, tempdir.path(), true).unwrap();
let indexer_config = IndexerConfig::default();
std::thread::scope(|s| {