diff options
| author | zousar <[email protected]> | 2025-12-17 23:41:20 -0700 |
|---|---|---|
| committer | zousar <[email protected]> | 2025-12-17 23:41:20 -0700 |
| commit | b4c7cb331a221f51d7445a172dcabe7e36ae1f4c (patch) | |
| tree | ea2582ab58c786382fb30614ac07b023d631cb58 /src/zenserver/storage/storageconfig.cpp | |
| parent | 5.7.15 (diff) | |
| download | zen-b4c7cb331a221f51d7445a172dcabe7e36ae1f4c.tar.xz zen-b4c7cb331a221f51d7445a172dcabe7e36ae1f4c.zip | |
Change default limit-overwrite behavior to true
Diffstat (limited to 'src/zenserver/storage/storageconfig.cpp')
| -rw-r--r-- | src/zenserver/storage/storageconfig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenserver/storage/storageconfig.cpp b/src/zenserver/storage/storageconfig.cpp index 3a41ad003..0f8ab1e98 100644 --- a/src/zenserver/storage/storageconfig.cpp +++ b/src/zenserver/storage/storageconfig.cpp @@ -832,7 +832,7 @@ ZenStorageServerCmdLineOptions::AddCacheOptions(cxxopts::Options& options, ZenSt "", "cache-bucket-limit-overwrites", "Whether to require policy flag pattern before allowing overwrites in cache bucket", - cxxopts::value<bool>(ServerOptions.StructuredCacheConfig.BucketConfig.LimitOverwrites)->default_value("false"), + cxxopts::value<bool>(ServerOptions.StructuredCacheConfig.BucketConfig.LimitOverwrites)->default_value("true"), ""); } |