diff options
Diffstat (limited to 'src/libstore/store-api.cc')
-rw-r--r-- | src/libstore/store-api.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc index 1e11e54eba7c..5aa3dcfd26a3 100644 --- a/src/libstore/store-api.cc +++ b/src/libstore/store-api.cc @@ -625,9 +625,10 @@ void copyPaths(ref<Store> srcStore, ref<Store> dstStore, const PathSet & storePa std::atomic<size_t> nrDone{0}; std::atomic<uint64_t> bytesExpected{0}; + std::atomic<uint64_t> nrRunning{0}; auto showProgress = [&]() { - act.progress(nrDone, missing.size()); + act.progress(nrDone, missing.size(), nrRunning); }; ThreadPool pool; @@ -655,6 +656,8 @@ void copyPaths(ref<Store> srcStore, ref<Store> dstStore, const PathSet & storePa if (!dstStore->isValidPath(storePath)) { printInfo("copying '%s'...", storePath); + MaintainCount<decltype(nrRunning)> mc(nrRunning); + showProgress(); copyStorePath(srcStore, dstStore, storePath, repair, checkSigs); } |