fix a bug in the generation of empty dumps

This commit is contained in:
Tamo 2021-10-07 18:51:04 +02:00
parent 24eef577c5
commit 5e3a53b576
No known key found for this signature in database
GPG Key ID: 20CD8020AFA88D69

View File

@ -248,6 +248,7 @@ where
let mut meta_file = File::create(&meta_path)?;
serde_json::to_writer(&mut meta_file, &meta)?;
create_dir_all(&temp_dump_path.join("indexes")).await?;
let uuids = self.index_resolver.dump(temp_dump_path.clone()).await?;
UpdateMsg::dump(&self.update_sender, uuids, temp_dump_path.clone()).await?;