fix run after rmi

Upstream-commit: 0a5d86d7beba53332e1c842e61a5751b95894601
Component: engine
This commit is contained in:
Victor Vieux
2013-05-09 18:57:47 +02:00
parent 9f30282b84
commit 6b9bb6e775

View File

@ -62,7 +62,7 @@ func (graph *Graph) restore() error {
// FIXME: Implement error subclass instead of looking at the error text
// Note: This is the way golang implements os.IsNotExists on Plan9
func (graph *Graph) IsNotExist(err error) bool {
return err != nil && strings.Contains(err.Error(), "does not exist")
return err != nil && (strings.Contains(err.Error(), "does not exist") || strings.Contains(err.Error(), "No such"))
}
// Exists returns true if an image is registered at the given id.