step 1 double the freq from once a week to once every 3days (#11769)

Increase the statistics report frequency from once a week to once in 3
days.
The idea is to double it in slow steps to make sure the Heroku can
withstand it.

Goal is to get to once every few hours.
This commit is contained in:
Sharon Katz 2023-06-01 09:40:42 -04:00 committed by GitHub
parent 45df29f993
commit ae1f6f4396
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,5 +54,5 @@ type HostsCountByOSVersion struct {
}
const (
StatisticsFrequency = time.Hour * 24 * 7
StatisticsFrequency = time.Hour * 24 * 3
)