Skip to content

Commit

Permalink
Remove nagging retry log
Browse files Browse the repository at this point in the history
  • Loading branch information
keimoon committed Jun 26, 2018
1 parent 2c09563 commit 6feec84
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion utils/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ func RetryWithFixedDelay(delay time.Duration, retries int, f func() error) error
if err == nil {
return nil
}
Warn("Got error %s, will retry in %s", err, delay)
time.Sleep(delay)
}
return err
Expand Down

0 comments on commit 6feec84

Please sign in to comment.