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
1 changed files with 2 additions and 1 deletions

View File

@ -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