fix edge case where boto returns empty list after subnet creation

pull/18777/head
Casey Lucas 9 years ago committed by Matt Clay
parent 1d0ae2f4ed
commit 4cd9933388

@ -121,7 +121,7 @@ def get_subnet_info(subnet):
def subnet_exists(vpc_conn, subnet_id):
filters = {'subnet-id': subnet_id}
subnet = vpc_conn.get_all_subnets(filters=filters)
if subnet[0].state == "available":
if subnet and subnet[0].state == "available":
return subnet[0]
else:
return False

Loading…
Cancel
Save