diff --git a/cli/updater/updater.go b/cli/updater/updater.go index ef297cde..16381a67 100644 --- a/cli/updater/updater.go +++ b/cli/updater/updater.go @@ -114,7 +114,7 @@ update chaos deployments use the "--chaos" flag. Use it with care. logrus.Fatal(err) } - conf := runtime.New() + conf := runtime.New(runtime.WithEnsureRecipeLatest(true)) if !updateAll { stackName := c.Args().Get(0) @@ -409,7 +409,7 @@ func tryUpgrade(cl *dockerclient.Client, stackName, recipeName string, conf *run } if !updatesEnabled { - logrus.Debugf("Don't update %s due to disabling auto updates or missing ENABLE_AUTOUPDATE env.", stackName) + logrus.Debugf("Don't update %s due to disabling auto updates or missing ENABLE_AUTO_UPDATE env.", stackName) return nil }