1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #33209 from cpuguy83/continue_on_err

Add continue on error in mountspec backport
This commit is contained in:
Brian Goff 2017-05-16 12:54:13 -04:00 committed by GitHub
commit d12b2387d7

View file

@ -281,6 +281,7 @@ func (daemon *Daemon) backportMountSpec(container *container.Container) {
from, _, err := volume.ParseVolumesFrom(fromSpec)
if err != nil {
logrus.WithError(err).WithField("id", container.ID).Error("Error reading volumes-from spec during mount spec backport")
continue
}
fromC, err := daemon.GetContainer(from)
if err != nil {