Merge pull request #954 from evanccnyc/devel

fixing hang after creation in ec2_eni
This commit is contained in:
James Cammarata 2015-09-10 15:33:09 -04:00
commit 82f8ffc627

View file

@ -215,8 +215,8 @@ def create_eni(connection, module):
raise
# Wait to allow creation / attachment to finish
wait_for_eni(eni, "attached")
eni.update()
changed = True
eni.update()
except BotoServerError as e:
module.fail_json(msg=get_error_message(e.args[2]))