Skip to content

Commit d49d28a

Browse files
authored
Update driver.go
1 parent e6b0772 commit d49d28a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

driver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func (hd *hetznerDriver) checkBackoff() error {
3131
now := time.Now()
3232
if now.Before(hd.nextTry) {
3333
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)
34+
return fmt.Errorf("last failure too recent; failed %d times in a row before this; retry in %s", hd.failuresInARow, waitDuration)
3535
}
3636
return nil
3737
}

0 commit comments

Comments
 (0)