main: advance by one minute for this timer, not five

This commit is contained in:
Cadey Ratio 2017-01-25 12:16:46 -08:00
parent 8506cd5023
commit 574541d47f
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ func main() {
processBuckets(ab)
ab = map[string]*Bucket{}
lastTime = lastTime.Add(5 * time.Minute)
lastTime = lastTime.Add(time.Minute)
}
b := ab[ll.Host]