implement index dump

This commit is contained in:
Marin Postma
2021-05-24 18:16:35 +02:00
parent 7ad553670f
commit 4acbe8e473
8 changed files with 79 additions and 55 deletions

View File

@ -642,7 +642,7 @@ impl UpdateStore {
let path = &path;
let mut stream = futures::stream::iter(uuids.iter())
.map(|(uid, uuid)| handle.dump(uid.clone(), *uuid, path.clone()))
.map(|(uid, uuid)| handle.dump(*uuid, path.clone()))
.buffer_unordered(CONCURRENT_INDEX_MSG / 3);
Handle::current().block_on(async {