expand report interval

This commit is contained in:
kongfei 2022-08-15 11:41:30 +08:00
parent fb373afbd1
commit a48c2dfdbb
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ func Report() {
select {
case <-timer.C:
do()
timer.Reset(10 * time.Second)
timer.Reset(10 * time.Minute)
}
}
}