diff options
| author | Dan Engelbrecht <[email protected]> | 2025-10-16 14:06:02 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-10-16 14:06:02 +0200 |
| commit | 4eaae0bf20dbbe8357809f6ecdbe9608bdf15389 (patch) | |
| tree | 85f94150ea03e7c8b4ad2e7a1bb3d1734bc9f025 /src/zenremotestore/include | |
| parent | fix log progress quotes (#580) (diff) | |
| download | zen-4eaae0bf20dbbe8357809f6ecdbe9608bdf15389.tar.xz zen-4eaae0bf20dbbe8357809f6ecdbe9608bdf15389.zip | |
builds download progress include validate (#582)
* take validation into account for progress feedback when downloading builds
Diffstat (limited to 'src/zenremotestore/include')
| -rw-r--r-- | src/zenremotestore/include/zenremotestore/builds/buildstorageoperations.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/zenremotestore/include/zenremotestore/builds/buildstorageoperations.h b/src/zenremotestore/include/zenremotestore/builds/buildstorageoperations.h index fcf880e48..f200a342c 100644 --- a/src/zenremotestore/include/zenremotestore/builds/buildstorageoperations.h +++ b/src/zenremotestore/include/zenremotestore/builds/buildstorageoperations.h @@ -225,6 +225,7 @@ public: DownloadStatistics m_DownloadStats; WriteChunkStatistics m_WriteChunkStats; RebuildFolderStateStatistics m_RebuildFolderStateStats; + std::atomic<uint64_t> m_WrittenChunkByteCount; private: struct BlockWriteOps @@ -450,6 +451,8 @@ private: const std::filesystem::path m_CacheFolderPath; const std::filesystem::path m_TempDownloadFolderPath; const std::filesystem::path m_TempBlockFolderPath; + + std::atomic<uint64_t> m_ValidatedChunkByteCount; }; struct FindBlocksStatistics |