diff --git a/module-operator/controllers/module/handlers/helm/install/install_handler.go b/module-operator/controllers/module/handlers/helm/install/install_handler.go index e4036ed..d82bb1a 100644 --- a/module-operator/controllers/module/handlers/helm/install/install_handler.go +++ b/module-operator/controllers/module/handlers/helm/install/install_handler.go @@ -89,7 +89,7 @@ func (h HelmHandler) DoWork(ctx handlerspi.HandlerContext) result.Result { return h.HelmUpgradeOrInstall(ctx) } -func (h HelmHandler)CheckDependencies(context handlerspi.HandlerContext) result.Result { +func (h HelmHandler) CheckDependencies(context handlerspi.HandlerContext) result.Result { return result.NewResult() } diff --git a/module-operator/controllers/module/handlers/helm/update/update_handler.go b/module-operator/controllers/module/handlers/helm/update/update_handler.go index b275f8f..eef7881 100644 --- a/module-operator/controllers/module/handlers/helm/update/update_handler.go +++ b/module-operator/controllers/module/handlers/helm/update/update_handler.go @@ -43,7 +43,7 @@ func (h HelmHandler) PreWork(ctx handlerspi.HandlerContext) result.Result { return result.NewResult() } -func (h HelmHandler)CheckDependencies(context handlerspi.HandlerContext) result.Result { +func (h HelmHandler) CheckDependencies(context handlerspi.HandlerContext) result.Result { return result.NewResult() } diff --git a/module-operator/controllers/module/handlers/helm/upgrade/upgrade_handler.go b/module-operator/controllers/module/handlers/helm/upgrade/upgrade_handler.go index 3c16cc4..741c299 100644 --- a/module-operator/controllers/module/handlers/helm/upgrade/upgrade_handler.go +++ b/module-operator/controllers/module/handlers/helm/upgrade/upgrade_handler.go @@ -51,7 +51,7 @@ func (h HelmHandler) PreWork(ctx handlerspi.HandlerContext) result.Result { return result.NewResult() } -func (h HelmHandler)CheckDependencies(context handlerspi.HandlerContext) result.Result { +func (h HelmHandler) CheckDependencies(context handlerspi.HandlerContext) result.Result { return result.NewResult() }