Useful log output.

pull/18777/head
mcameron 10 years ago committed by Matt Clay
parent fe08f52d92
commit 751e268f0d

@ -324,7 +324,7 @@ def _add_floating_ip_from_pool(module, nova, server):
try: try:
new_ip = nova.floating_ips.create(pool) new_ip = nova.floating_ips.create(pool)
except Exception, e: except Exception, e:
module.fail_json(msg = "Unable to create floating ip") module.fail_json(msg = "Unable to create floating ip: %s" % (e.message))
pool_ips.append(new_ip.ip) pool_ips.append(new_ip.ip)
# Add to the main list # Add to the main list
usable_floating_ips[pool] = pool_ips usable_floating_ips[pool] = pool_ips

Loading…
Cancel
Save