delay of fetch is now 5 minutes
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Philipp 2021-09-20 22:58:50 +02:00
parent 77b88325cf
commit f85fb7434d
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ func main() {
for _, s := range ss {
serverString := s.ServerIP
c := cron.New()
c.AddFunc("*/1 * * * *", func() { updateServers(serverString, store) })
c.AddFunc("*/5 * * * *", func() { updateServers(serverString, store) })
c.Start()
}