Skip to content

Commit ac152c2

Browse files
committed
improve comment
1 parent dd53ef3 commit ac152c2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

controllers/idler/idler_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ type Reconciler struct {
8989
// and what is in the Idler.Spec
9090
// Note:
9191
// The Controller will requeue the Request to be processed again if the returned error is non-nil or
92-
// Result.Requeue > 0 is true, otherwise upon completion it will remove the work from the queue.
92+
// Result.RequeueAfter > 0 is true, otherwise upon completion it will remove the work from the queue.
9393
func (r *Reconciler) Reconcile(ctx context.Context, request ctrl.Request) (ctrl.Result, error) {
9494
logger := log.FromContext(ctx)
9595
logger.Info("new reconcile loop")

controllers/memberoperatorconfig/memberoperatorconfig_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type Reconciler struct {
4545
// and what is in the MemberOperatorConfig.Spec
4646
// Note:
4747
// The Controller will requeue the Request to be processed again if the returned error is non-nil or
48-
// Result.Requeue > 0 is true, otherwise upon completion it will remove the work from the queue.
48+
// Result.RequeueAfter > 0 is true, otherwise upon completion it will remove the work from the queue.
4949
func (r *Reconciler) Reconcile(ctx context.Context, request ctrl.Request) (ctrl.Result, error) {
5050
reqLogger := log.FromContext(ctx)
5151
reqLogger.Info("Reconciling MemberOperatorConfig")

controllers/useraccount/useraccount_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ type Reconciler struct {
6565
// and what is in the UserAccount.Spec
6666
// Note:
6767
// The Controller will requeue the Request to be processed again if the returned error is non-nil or
68-
// Result.Requeue > 0 is true, otherwise upon completion it will remove the work from the queue.
68+
// Result.RequeueAfter > 0 is true, otherwise upon completion it will remove the work from the queue.
6969
func (r *Reconciler) Reconcile(ctx context.Context, request ctrl.Request) (ctrl.Result, error) {
7070
logger := log.FromContext(ctx)
7171
logger.Info("reconciling UserAccount")

0 commit comments

Comments
 (0)