diff options
| author | Dan Engelbrecht <[email protected]> | 2022-11-18 13:32:12 +0100 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2022-11-18 13:32:12 +0100 |
| commit | 39f93a8f40e4a25f171f29fd7939b83f4622e354 (patch) | |
| tree | 517ea729dfd0a2ce98854855918ee19ce3cf540b | |
| parent | Add `import-project` and `export-project` (#183) (diff) | |
| download | zen-39f93a8f40e4a25f171f29fd7939b83f4622e354.tar.xz zen-39f93a8f40e4a25f171f29fd7939b83f4622e354.zip | |
changelog and removed obsolete comment
| -rw-r--r-- | CHANGELOG.md | 7 | ||||
| -rw-r--r-- | zenserver/projectstore.cpp | 1 |
2 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index aaf806e70..69d70d679 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## -- Added zen command line executable to release distribution +- Feature: Adds two command to Zen command tool to export/import project store oplogs with attachments + - `export-project <target-folder> <project> [oplogs...]` + - `import-project <target-folder> <project> [oplogs...]` +- Feature: Configure OpenID providers from cmd line and Lua cfg +- Feature: Added zen command line executable to release distribution +- Improvement: Optimizations when handling compressed buffer (less materialization and reading of headers) - Improvement: Send attachments as file references if the IoBuffer we find represents a complete file and `AcceptFlags` in RPC request allows it. ## v0.1.8 diff --git a/zenserver/projectstore.cpp b/zenserver/projectstore.cpp index 6940583d1..2268b5caf 100644 --- a/zenserver/projectstore.cpp +++ b/zenserver/projectstore.cpp @@ -2205,7 +2205,6 @@ HttpProjectService::HttpProjectService(CidStore& Store, ProjectStore* Projects) ZEN_INFO("Writing {} attachments for '{}/{}'", Attachments.size(), ProjectId, OplogId); - // Spread over multiple threads? WorkerThreadPool WorkerPool(Min(std::thread::hardware_concurrency(), 16u)); std::atomic_int64_t JobCount = 0; for (const CbAttachment& Attachment : Attachments) |