Skip to content

Commit

Permalink
Merge pull request #1090 from matheuscscp/fix-warning
Browse files Browse the repository at this point in the history
Fix requeue warning introduced by controller-runtime
  • Loading branch information
stefanprodan committed Mar 8, 2024
2 parents 7aa6690 + 4c209ef commit 5e0be40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/controller/kustomization_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func (r *KustomizationReconciler) Reconcile(ctx context.Context, req ctrl.Reques
}

// Retry with backoff on transient errors.
return ctrl.Result{Requeue: true}, err
return ctrl.Result{}, err
}

// Requeue the reconciliation if the source artifact is not found.
Expand Down

0 comments on commit 5e0be40

Please sign in to comment.