Skip to content

Commit

Permalink
Fixed error message when reaching maximum retries
Browse files Browse the repository at this point in the history
  • Loading branch information
Janos Bonic committed Jun 23, 2022
1 parent 22e7c5f commit 6499b19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion retry.go
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ func (m *maxTriesStrategy) Continue(err error, action string) error {
return wrap(
err,
ETimeout,
"maximum retries reached while trying to %s, giving up",
"maximum retries reached while %s, giving up",
action,
)
}
Expand Down

0 comments on commit 6499b19

Please sign in to comment.