aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md1
-rw-r--r--src/zen/cmds/projectstore_cmd.h2
-rw-r--r--src/zenserver/storage/projectstore/httpprojectstore.cpp2
3 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 88b1acad7..ca82d771c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,7 @@
- Improvement: Automatic scaling up of http server threads when using `--dedicated` is only done if `--http-threads` is not specified
- Improvement: Refactored cache batch fetch operations to not do complex execution in destructor of PutBatch and GetBatch classes
- Improvement: Stop unhandled exceptions from async work in windows threadpool
+- Improvement: Upload of data to zen cache during oplog import is now disabled by default
- Bugfix: Fixed warning due to calling std::filesystem::equivalent on a non-existing path
## 5.7.13
diff --git a/src/zen/cmds/projectstore_cmd.h b/src/zen/cmds/projectstore_cmd.h
index 16852d270..f80be5f71 100644
--- a/src/zen/cmds/projectstore_cmd.h
+++ b/src/zen/cmds/projectstore_cmd.h
@@ -173,7 +173,7 @@ private:
std::string m_CloudUrl;
std::string m_ZenCacheHost;
- bool m_UploadToZenCache = true;
+ bool m_UploadToZenCache = false;
std::string m_CloudKey;
std::string m_BuildsHost;
diff --git a/src/zenserver/storage/projectstore/httpprojectstore.cpp b/src/zenserver/storage/projectstore/httpprojectstore.cpp
index 9661f1b49..11231a203 100644
--- a/src/zenserver/storage/projectstore/httpprojectstore.cpp
+++ b/src/zenserver/storage/projectstore/httpprojectstore.cpp
@@ -464,7 +464,7 @@ namespace {
bool ForceDisableBlocks = Builds["disableblocks"sv].AsBool(false);
bool ForceDisableTempBlocks = Builds["disabletempblocks"sv].AsBool(false);
bool AssumeHttp2 = Builds["assumehttp2"sv].AsBool(false);
- bool PopulateCache = Builds["populateCache"sv].AsBool(true);
+ bool PopulateCache = Builds["populateCache"sv].AsBool(false);
MemoryView MetaDataSection = Builds["metadata"sv].AsBinaryView();
IoBuffer MetaData(IoBuffer::Wrap, MetaDataSection.GetData(), MetaDataSection.GetSize());