Skip to content

Commit

Permalink
Remove reconcile error from retry (#3045)
Browse files Browse the repository at this point in the history
  • Loading branch information
manno authored Nov 4, 2024
1 parent 83fa9e4 commit 06e075a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func (r *StatusReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctr
err = r.Client.Status().Update(ctx, gitrepo)
if err != nil {
logger.Error(err, "Reconcile failed update to git repo status", "status", gitrepo.Status)
return ctrl.Result{RequeueAfter: durations.GitRepoStatusDelay}, err
return ctrl.Result{RequeueAfter: durations.GitRepoStatusDelay}, nil
}

return ctrl.Result{}, nil
Expand Down

0 comments on commit 06e075a

Please sign in to comment.