mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 11:57:07 +02:00
fix the bad index version on opening
This commit is contained in:
parent
4f21ee6c66
commit
7197ced673
16 changed files with 31 additions and 21 deletions
|
@ -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| {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue