diff options
| author | Dan Engelbrecht <[email protected]> | 2024-01-31 10:31:00 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-01-31 10:31:00 +0100 |
| commit | 78968c2e97a5c407a65088aa9861052d80498053 (patch) | |
| tree | 4fa02e7b9fd0b321b8ed7e4adaa7e06c6527929c /src/zenserver/projectstore/projectstore.cpp | |
| parent | Update README.md (diff) | |
| download | zen-78968c2e97a5c407a65088aa9861052d80498053.tar.xz zen-78968c2e97a5c407a65088aa9861052d80498053.zip | |
improve oplog export logging (#644)
- Improvement: More details in oplog import/export logs
- Improvement: Switch from Download to Get when fetching Refs from Jupiter as they can't be resumed anyway and streaming to disk is redundant
- Bugfix: Make sure we clear read callback when doing Put in HttpClient to avoid timeout due to not sending data when reusing sessions
- Bugfix: Respect `--ignore-missing-attachments` in `oplog-export` command when loose file is missing on disk
Diffstat (limited to 'src/zenserver/projectstore/projectstore.cpp')
| -rw-r--r-- | src/zenserver/projectstore/projectstore.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/zenserver/projectstore/projectstore.cpp b/src/zenserver/projectstore/projectstore.cpp index caf405066..6bb543d63 100644 --- a/src/zenserver/projectstore/projectstore.cpp +++ b/src/zenserver/projectstore/projectstore.cpp @@ -3140,8 +3140,6 @@ ProjectStore::Export(Ref<ProjectStore::Project> Project, ProjectStore::Oplog& Op MaxBlockSize, MaxChunkEmbedSize, EmbedLooseFile, - CreateBlocks = StoreInfo.CreateBlocks, - UseTempBlockFiles = StoreInfo.UseTempBlockFiles, Force, IgnoreMissingAttachments](JobContext& Context) { RemoteProjectStore::Result Result = SaveOplog(m_CidStore, @@ -3151,8 +3149,6 @@ ProjectStore::Export(Ref<ProjectStore::Project> Project, ProjectStore::Oplog& Op MaxBlockSize, MaxChunkEmbedSize, EmbedLooseFile, - CreateBlocks, - UseTempBlockFiles, Force, IgnoreMissingAttachments, &Context); |