From 0697eaa3292e8419e9374946f5fc36a0e4d9a843 Mon Sep 17 00:00:00 2001 From: ltsonov Date: Wed, 27 Sep 2023 15:35:37 +0300 Subject: [PATCH] Enable the remote configuration feature by default --- main.go | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/main.go b/main.go index ded68115..94f62ea4 100644 --- a/main.go +++ b/main.go @@ -227,12 +227,8 @@ func main() { go func() { defer wg.Done() - // TODO: Remove once the feature is ready for go-live - enableConfigurator := os.Getenv("ENABLE_REMOTE_CONFIGURATOR") - if enableConfigurator == "true" { - setupLog.Info("Starting remote configurator") - applierController.RunLoop(signalsContext) - } + setupLog.Info("Starting remote configurator") + applierController.RunLoop(signalsContext) }() wg.Wait()