Skip to content

Commit

Permalink
Fix erroring CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jbiers committed Feb 3, 2025
1 parent ee2df25 commit 0c64743
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/helm-locker/controllers/release/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,10 @@ func (h *handler) OnHelmReleaseRemove(_ string, helmRelease *v1alpha1.HelmReleas
}

func (h *handler) OnHelmRelease(_ string, helmRelease *v1alpha1.HelmRelease) (*v1alpha1.HelmRelease, error) {
logrus.Debugf("Handling HelmRelease %s", helmRelease.GetName())
//logrus.Debugf("Handling HelmRelease %s", helmRelease.GetName())

if shouldManage, err := h.shouldManage(helmRelease); err != nil {
//logrus.Debugf("error on running shoulManage for HelmRelease %s: %s", helmRelease.GetName(), err)
//logrus.Debugf("error on running shouldManage for HelmRelease %s: %s", helmRelease.GetName(), err)
return helmRelease, err
} else if !shouldManage {
//logrus.Debugf("HelmRelease %s will not be managed by this operator.", helmRelease.GetName())
Expand Down

0 comments on commit 0c64743

Please sign in to comment.