fix(gasflux.ini): 禁止失败任务的自动清理

failed_task_cleanup_age: 60 → 315360000(10年)
janitor 每30秒扫描 + 启动时 reconcile 都会清理超过此时间的失败任务,
60秒太短,改为10年等同于禁用自动清理
This commit is contained in:
DXC
2026-07-10 17:04:51 +08:00
parent adaabb2831
commit 55cb7fb025

View File

@ -32,7 +32,7 @@ max_task_age = 86400
# 1 minute in seconds for successful tasks
successful_task_cleanup_age = 315360000
# 1 minute in seconds for failed tasks
failed_task_cleanup_age = 60
failed_task_cleanup_age = 315360000
janitor_dry_run = false
[performance]