diff options
| author | Dan Engelbrecht <[email protected]> | 2026-01-15 11:21:29 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-01-15 11:21:29 +0100 |
| commit | 424b72675a993dd60753eb2bb5615959d9768f2c (patch) | |
| tree | 77012d62bcd5dea50e3d776f7b6fdbdc84c39a9c | |
| parent | 5.7.16-pre3 (diff) | |
| download | zen-424b72675a993dd60753eb2bb5615959d9768f2c.tar.xz zen-424b72675a993dd60753eb2bb5615959d9768f2c.zip | |
fix init of buildpart id in zen oplog-download (#711)
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | src/zenremotestore/include/zenremotestore/projectstore/projectstoreoperations.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b66b6cc4f..5bf06fb88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ - Improvement: If we fail to create the server mutex, gracefully report the problem and exit without sending error to Sentry - Improvement: Excluded folder names are now matched by folder name in subfolders in addition to root level folders - Bugfix: Upstream propagation of Put operations would not retain the overwrite cache policy if it was used +- Bugfix: `zen oplog-download` failed to initialize build part id causing it to fail to download the build part ## 5.7.15 - Feature: `zen oplog-export`, `zen oplog-import` and `zen oplog-download` now has options to boost workers diff --git a/src/zenremotestore/include/zenremotestore/projectstore/projectstoreoperations.h b/src/zenremotestore/include/zenremotestore/projectstore/projectstoreoperations.h index 044436509..a07ede6f6 100644 --- a/src/zenremotestore/include/zenremotestore/projectstore/projectstoreoperations.h +++ b/src/zenremotestore/include/zenremotestore/projectstore/projectstoreoperations.h @@ -56,7 +56,7 @@ private: const Oid m_BuildId; const Options m_Options; - Oid m_BuildPartId; + Oid m_BuildPartId = Oid::Zero; CbObject m_BuildObject; CbObject m_BuildPartsObject; CbObject m_OpsSectionObject; |