Skip to content

Commit

Permalink
fix constant reconcilation issue in helm controller (#6895)
Browse files Browse the repository at this point in the history
Signed-off-by: Adam D. Cornett <[email protected]>
  • Loading branch information
acornett21 authored Jan 13, 2025
1 parent 939446b commit 84022fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/helm/controller/reconcile.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func (r HelmOperatorReconciler) Reconcile(ctx context.Context, request reconcile
}

status := types.StatusFor(o)
originalStatus := o.DeepCopy().Object["status"]
originalStatus := types.StatusFor(o.DeepCopy())
log = log.WithValues("release", manager.ReleaseName())

reconcileResult := reconcile.Result{RequeueAfter: r.ReconcilePeriod}
Expand Down

0 comments on commit 84022fc

Please sign in to comment.