diff options
| author | Zousar Shaker <[email protected]> | 2025-05-15 17:58:34 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-05-15 17:58:34 +0100 |
| commit | bf4b958209be157a99550f8c478483c306d11b33 (patch) | |
| tree | d43a8660f755202be9410aed9c5872f25f1672ff | |
| parent | make sure tests initialize trace so we don't end up allocating tons of memory... (diff) | |
| parent | Change retention to 8 days in default config (diff) | |
| download | zen-bf4b958209be157a99550f8c478483c306d11b33.tar.xz zen-bf4b958209be157a99550f8c478483c306d11b33.zip | |
Merge pull request #396 from ue-foundation/zs/config-retention-8days
Change retention to 8 days in default config
| -rw-r--r-- | upstream-config-templates/zen_config.lua.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/upstream-config-templates/zen_config.lua.j2 b/upstream-config-templates/zen_config.lua.j2 index d0278844c..6af15ac69 100644 --- a/upstream-config-templates/zen_config.lua.j2 +++ b/upstream-config-templates/zen_config.lua.j2 @@ -19,12 +19,12 @@ gc = { intervalseconds = 28800, -- every 8 hour
lightweightintervalseconds = 3600, -- every hour
cache = {
- maxdurationseconds = 864000, -- 10 days
+ maxdurationseconds = 691200, -- 8 days
}
}
stats = {
- enable = true
+ enable = true
}
cache = {
|