From e4a89bcc4f16e971acddf9e628e60a55cd7eee4e Mon Sep 17 00:00:00 2001 From: Moritz Date: Tue, 28 Feb 2023 15:34:27 +0100 Subject: [PATCH] fix(kadabra): only warn if a deployed app has no published release --- cli/updater/updater.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/updater/updater.go b/cli/updater/updater.go index af849b990..ef297cdea 100644 --- a/cli/updater/updater.go +++ b/cli/updater/updater.go @@ -284,7 +284,8 @@ func getAvailableUpgrades(cl *dockerclient.Client, stackName string, recipeName } if len(versions) == 0 { - return nil, fmt.Errorf("no published releases for %s in the recipe catalogue?", recipeName) + logrus.Warnf("no published releases for %s in the recipe catalogue?", recipeName) + return nil, nil } var availableUpgrades []string