mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #13390 from mrjana/cnm_integ
Do not attempt releasing network when not attached to any network
This commit is contained in:
commit
b445004364
1 changed files with 6 additions and 0 deletions
|
@ -903,6 +903,12 @@ func (container *Container) ReleaseNetwork() {
|
|||
return
|
||||
}
|
||||
|
||||
// If the container is not attached to any network do not try
|
||||
// to release network and generate spurious error messages.
|
||||
if container.NetworkSettings.NetworkID == "" {
|
||||
return
|
||||
}
|
||||
|
||||
n, err := container.daemon.netController.NetworkByID(container.NetworkSettings.NetworkID)
|
||||
if err != nil {
|
||||
logrus.Errorf("error locating network id %s: %v", container.NetworkSettings.NetworkID, err)
|
||||
|
|
Loading…
Add table
Reference in a new issue