mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2026-01-02 20:03:17 -06:00
27 lines
419 B
Go
27 lines
419 B
Go
/*
|
|
internal is a private internal package.
|
|
*/
|
|
package internal
|
|
|
|
import (
|
|
"math/rand"
|
|
"time"
|
|
)
|
|
|
|
func RetryBackoff(retry int, minBackoff, maxBackoff time.Duration) time.Duration {
|
|
if retry < 0 {
|
|
panic("not reached")
|
|
}
|
|
if minBackoff == 0 {
|
|
return 0
|
|
}
|
|
|
|
d := minBackoff << uint(retry)
|
|
d = minBackoff + time.Duration(rand.Int63n(int64(d)))
|
|
|
|
if d > maxBackoff || d < minBackoff {
|
|
d = maxBackoff
|
|
}
|
|
|
|
return d
|
|
}
|