We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5260640 commit 72709fcCopy full SHA for 72709fc
internal/client/transaction.go
@@ -52,7 +52,7 @@ func withRetryOnTooManyRequests(fn func() error, maxRetries int) error {
52
err := fn()
53
if err != nil {
54
backoffTime := time.Duration(int(math.Pow(1.01, float64(trials)))*15) * time.Second
55
- fmt.Printf("Sleeping for %d seconds", backoffTime/time.Second)
+ fmt.Printf("Sleeping for %d seconds\n", backoffTime/time.Second)
56
time.Sleep(backoffTime)
57
} else {
58
return nil
0 commit comments