Skip to content

Commit 72709fc

Browse files
committed
Add new line to log.
1 parent 5260640 commit 72709fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/client/transaction.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func withRetryOnTooManyRequests(fn func() error, maxRetries int) error {
5252
err := fn()
5353
if err != nil {
5454
backoffTime := time.Duration(int(math.Pow(1.01, float64(trials)))*15) * time.Second
55-
fmt.Printf("Sleeping for %d seconds", backoffTime/time.Second)
55+
fmt.Printf("Sleeping for %d seconds\n", backoffTime/time.Second)
5656
time.Sleep(backoffTime)
5757
} else {
5858
return nil

0 commit comments

Comments
 (0)