We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6b0772 commit d49d28aCopy full SHA for d49d28a
driver.go
@@ -31,7 +31,7 @@ func (hd *hetznerDriver) checkBackoff() error {
31
now := time.Now()
32
if now.Before(hd.nextTry) {
33
waitDuration := time.Until(hd.nextTry)
34
- 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)
35
}
36
return nil
37
0 commit comments