Skip to content

Commit

Permalink
Update driver.go
Browse files Browse the repository at this point in the history
  • Loading branch information
s4ke committed Apr 23, 2024
1 parent e6b0772 commit d49d28a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func (hd *hetznerDriver) checkBackoff() error {
now := time.Now()
if now.Before(hd.nextTry) {
waitDuration := time.Until(hd.nextTry)
return fmt.Errorf("last failure too recent; failed %d times in a row before this; retry after %s", hd.failuresInARow, waitDuration)
return fmt.Errorf("last failure too recent; failed %d times in a row before this; retry in %s", hd.failuresInARow, waitDuration)
}
return nil
}
Expand Down

0 comments on commit d49d28a

Please sign in to comment.