Purge networks using network name rather than ID. Fixes 4596.

This commit is contained in:
Chris Houseknecht 2016-09-10 00:45:51 -04:00 committed by Matt Clay
parent 890c2d04e2
commit 05303a974d

View file

@ -1767,9 +1767,9 @@ class ContainerManager(DockerBaseClass):
def _purge_networks(self, container, networks):
for network in networks:
self.results['actions'].append(dict(removed_from_network=network['name']))
if not self.check_mode and network.get('id'):
if not self.check_mode:
try:
self.client.disconnect_container_from_network(container.Id, network['id'])
self.client.disconnect_container_from_network(container.Id, network['name'])
except Exception as exc:
self.fail("Error disconnecting container from network %s - %s" % (network['name'],
str(exc)))