reduce the deliverator hysteresis to reduce clumping

This commit is contained in:
Ted Unangst 2019-04-29 14:13:34 -04:00
parent ef7880cadc
commit aed70531ff
1 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ func redeliverator() {
if !sleeper.Stop() {
<-sleeper.C
}
time.Sleep(1 * time.Minute)
time.Sleep(5 * time.Second)
case <-sleeper.C:
}
@ -150,7 +150,7 @@ func redeliverator() {
nexttime = d.When
}
}
dur := nexttime.Sub(now).Round(time.Second) + 1*time.Minute
dur := nexttime.Sub(now).Round(time.Second) + 5*time.Second
sleeper.Reset(dur)
}
}