Set default retention check interval to 30 minutes
Since the minimum retention period is 1 hour, checking every 10 minutes seems excessive and generates noise in the logs.pull/3856/head
parent
ae825fdf3d
commit
d771612718
|
@ -12,5 +12,5 @@ type Config struct {
|
|||
}
|
||||
|
||||
func NewConfig() Config {
|
||||
return Config{Enabled: true, CheckInterval: toml.Duration(10 * time.Minute)}
|
||||
return Config{Enabled: true, CheckInterval: toml.Duration(30 * time.Minute)}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue