Skip to content

Commit bb47a06

Browse files
fix typo in controller.go
1 parent f662d8b commit bb47a06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/internal/controller/controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ func (c *Controller[request]) reconcileHandler(ctx context.Context, req request)
327327
ctrlmetrics.ReconcileErrors.WithLabelValues(c.Name).Inc()
328328
ctrlmetrics.ReconcileTotal.WithLabelValues(c.Name, labelError).Inc()
329329
if !result.IsZero() {
330-
log.Info("Warning: Reconciler returned both a non-zero result and a non-nil error. The result will always be ignored if the error is non-nil and the non-nil error causes reqeueuing with exponential backoff. For more details, see: https://pkg.go.dev/sigs.k8s.io/controller-runtime/pkg/reconcile#Reconciler")
330+
log.Info("Warning: Reconciler returned both a non-zero result and a non-nil error. The result will always be ignored if the error is non-nil and the non-nil error causes requeuing with exponential backoff. For more details, see: https://pkg.go.dev/sigs.k8s.io/controller-runtime/pkg/reconcile#Reconciler")
331331
}
332332
log.Error(err, "Reconciler error")
333333
case result.RequeueAfter > 0:

0 commit comments

Comments
 (0)