Merge pull request #7542 from sivel/rax-cdb-notfound

rax_cbs module: Don't fail when the volume is not found
pull/7609/head
James Cammarata 11 years ago
commit b1d76b37db

@ -141,6 +141,8 @@ def cloud_block_storage(module, state, name, description, meta, size,
except ValueError:
try:
volume = cbs.find(name=name)
except pyrax.exc.NotFound:
pass
except Exception, e:
module.fail_json(msg='%s' % e)

Loading…
Cancel
Save