Merge "Add empty volume item check in kolla_docker module"

This commit is contained in:
Jenkins 2017-03-06 19:26:33 +00:00 committed by Gerrit Code Review
commit 446e2bb55b

@ -496,6 +496,9 @@ class DockerWorker(object):
vol_dict = dict()
for vol in volumes:
if len(vol) == 0:
continue
if ':' not in vol:
vol_list.append(vol)
continue