Merge "Fix kolla_docker check_volume"
This commit is contained in:
commit
8812271484
@ -220,7 +220,7 @@ class DockerWorker(object):
|
|||||||
return image
|
return image
|
||||||
|
|
||||||
def check_volume(self):
|
def check_volume(self):
|
||||||
for vol in self.dc.volumes()['Volumes']:
|
for vol in self.dc.volumes()['Volumes'] or list():
|
||||||
if vol['Name'] == self.params.get('name'):
|
if vol['Name'] == self.params.get('name'):
|
||||||
return vol
|
return vol
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user