Skip to content

Commit f314864

Browse files
ingvagabundk8s-ci-robot
authored andcommitted
Change requeue after to requeue-after (#498)
1 parent b14c4f1 commit f314864

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/controller/machine/controller.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ func (c *MachineControllerImpl) Reconcile(machine *clusterv1.Machine) error {
138138
err = c.update(m)
139139
if err != nil {
140140
if requeueErr, ok := err.(*controllerError.RequeueAfterError); ok {
141-
glog.Infof("Actuator returned requeue after error: %v", requeueErr)
141+
glog.Infof("Actuator returned requeue-after error: %v", requeueErr)
142142
return c.enqueueAfter(machine, requeueErr.RequeueAfter)
143143
}
144144
}

0 commit comments

Comments
 (0)