From: jose.lausuch Date: Thu, 17 Dec 2015 18:39:33 +0000 (+0100) Subject: Add debug information for ports in clean_openstack X-Git-Tag: 0.2~1876 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=ee5c41c028c942bd6f1e49441c7f5fbba1acf149;p=functest-xtesting.git Add debug information for ports in clean_openstack Change-Id: I3e7788c36971b132ab685dd55600a449aa1d5128 Signed-off-by: jose.lausuch --- diff --git a/testcases/VIM/OpenStack/CI/libraries/clean_openstack.py b/testcases/VIM/OpenStack/CI/libraries/clean_openstack.py index b77c0ee8..e2050455 100644 --- a/testcases/VIM/OpenStack/CI/libraries/clean_openstack.py +++ b/testcases/VIM/OpenStack/CI/libraries/clean_openstack.py @@ -170,7 +170,14 @@ def remove_networks(neutron_client): for port in ports: if port['network_id'] in network_ids: port_id = port['id'] - subnet_id = port['fixed_ips'][0]['subnet_id'] + try: + subnet_id = port['fixed_ips'][0]['subnet_id'] + except: + logger.info(" > ERROR: Error removing port %s." % port_id) + print port + print ports + continue + router_id = port['device_id'] if port['device_owner'] == 'network:router_interface': logger.debug("Detaching port %s (subnet %s) from router %s ..."