This commit is contained in:
cui 2026-06-18 21:54:41 -07:00 committed by GitHub
commit a46b8b8f38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -250,7 +250,7 @@ func (it *lookupIterator) slowdown() {
if diff > minInterval {
return
}
wait := time.NewTimer(diff)
wait := time.NewTimer(minInterval - diff)
defer wait.Stop()
select {
case <-wait.C: