Merge pull request #1958 from omriiluz/Bugfix-for-1957
No need for .keys on volumes list
This commit is contained in:
commit
bc6a8761a1
1 changed files with 1 additions and 1 deletions
|
@ -1020,7 +1020,7 @@ class DockerManager(object):
|
|||
|
||||
expected_volume_keys = set((image['ContainerConfig']['Volumes'] or {}).keys())
|
||||
if self.volumes:
|
||||
expected_volume_keys.update(self.volumes.keys())
|
||||
expected_volume_keys.update(self.volumes)
|
||||
|
||||
actual_volume_keys = set((container['Config']['Volumes'] or {}).keys())
|
||||
|
||||
|
|
Loading…
Reference in a new issue