diff options
| author | zousar <[email protected]> | 2025-05-14 14:53:03 -0600 |
|---|---|---|
| committer | zousar <[email protected]> | 2025-05-14 14:53:03 -0600 |
| commit | 7bcd232d596b860d631654c6b11fdc0c1c18855c (patch) | |
| tree | ca865337d18838a5c039c205031ee15c5234a990 | |
| parent | `zen oplog-import` and `zen oplog-export` now supports `--oidctoken-exe-path`... (diff) | |
| download | zen-7bcd232d596b860d631654c6b11fdc0c1c18855c.tar.xz zen-7bcd232d596b860d631654c6b11fdc0c1c18855c.zip | |
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 = {
|