diff options
| author | Zousar Shaker <[email protected]> | 2025-09-03 08:18:01 -0600 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-09-03 08:18:01 -0600 |
| commit | 20dc185d1c0638635c941d48b76e1e9554e5ba7d (patch) | |
| tree | 079d7cb39e9cfe6495860598843821e4348e1b13 | |
| parent | projectstore lifetime improvements (#481) (diff) | |
| parent | Enable overwrite limits by default on all cache buckets (diff) | |
| download | zen-20dc185d1c0638635c941d48b76e1e9554e5ba7d.tar.xz zen-20dc185d1c0638635c941d48b76e1e9554e5ba7d.zip | |
Merge pull request #485 from ue-foundation/zs/cfg-enable-overwrite-prevention
Enable overwrite limits by default on all cache buckets
| -rw-r--r-- | upstream-config-templates/zen_config.lua.j2 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/upstream-config-templates/zen_config.lua.j2 b/upstream-config-templates/zen_config.lua.j2 index d7aff7190..885e82877 100644 --- a/upstream-config-templates/zen_config.lua.j2 +++ b/upstream-config-templates/zen_config.lua.j2 @@ -33,6 +33,9 @@ stats = { cache = {
enable = true,
accesslog = false,
+ bucket = {
+ limitoverwrites = true,
+ },
upstream = {
upstreamthreadcount = 4,
policy = "disabled", -- readwrite|readonly|writeonly|disabled
|