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
Philip O'Toole 2015-08-26 13:06:04 -07:00
parent ae825fdf3d
commit d771612718
1 changed files with 1 additions and 1 deletions

View File

@ -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)}
}