fix(kadabra): only warn if a deployed app has no published release

This commit is contained in:
Moritz 2023-02-28 15:34:27 +01:00
parent eb07617e73
commit e4a89bcc4f

View File

@ -284,7 +284,8 @@ func getAvailableUpgrades(cl *dockerclient.Client, stackName string, recipeName
} }
if len(versions) == 0 { 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 var availableUpgrades []string