Skip to content

Commit

Permalink
Change requeue after to requeue-after (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
ingvagabund authored and k8s-ci-robot committed Oct 4, 2018
1 parent b14c4f1 commit f314864
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/machine/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func (c *MachineControllerImpl) Reconcile(machine *clusterv1.Machine) error {
err = c.update(m)
if err != nil {
if requeueErr, ok := err.(*controllerError.RequeueAfterError); ok {
glog.Infof("Actuator returned requeue after error: %v", requeueErr)
glog.Infof("Actuator returned requeue-after error: %v", requeueErr)
return c.enqueueAfter(machine, requeueErr.RequeueAfter)
}
}
Expand Down

0 comments on commit f314864

Please sign in to comment.