diff options
| author | zousar <[email protected]> | 2023-01-26 16:36:02 -0700 |
|---|---|---|
| committer | zousar <[email protected]> | 2023-01-26 16:36:02 -0700 |
| commit | 7089848131725eb40d9f2cb71fa5b117764fa0d7 (patch) | |
| tree | e917ec2e0b1ddae9f2b2edefb86c7ad1d94a045d | |
| parent | Change config to disable upstream by default (diff) | |
| download | zen-7089848131725eb40d9f2cb71fa5b117764fa0d7.tar.xz zen-7089848131725eb40d9f2cb71fa5b117764fa0d7.zip | |
Disable upstream in default zen config
Removing unused "enabled" attribute on upstream config and using the "policy" attribute instead to disable the upstream.
| -rw-r--r-- | upstream-config-templates/zen_config.lua.j2 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/upstream-config-templates/zen_config.lua.j2 b/upstream-config-templates/zen_config.lua.j2 index edb0ff6e8..062084f6c 100644 --- a/upstream-config-templates/zen_config.lua.j2 +++ b/upstream-config-templates/zen_config.lua.j2 @@ -21,9 +21,8 @@ gc = { cache = {
enable = true,
upstream = {
- enable = false,
upstreamthreadcount = 4,
- policy = "readwrite", -- readonly|writeonly|disabled
+ policy = "disabled", -- readwrite|readonly|writeonly|disabled
jupiter = {
name = "DefaultJupiterInstance",
url = "{{upstream_url}}",
|