forked from toolshed/abra
fix(kadabra): only warn if a deployed app has no published release
This commit is contained in:
parent
eb07617e73
commit
e4a89bcc4f
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user