We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cd3a92 commit b0c49daCopy full SHA for b0c49da
helpers/misc.go
@@ -23,6 +23,7 @@ func Retry(fn func() error, retries int, delay time.Duration, logger func(format
23
24
pow := math.Pow(2, float64(r))
25
backoff := delay * time.Duration(pow)
26
+
27
28
logger("Retrying (%d/%d) in %s: %s", r+1, retries, backoff, err.Error())
29
0 commit comments