From ee5c41c028c942bd6f1e49441c7f5fbba1acf149 Mon Sep 17 00:00:00 2001 From: "jose.lausuch" Date: Thu, 17 Dec 2015 19:39:33 +0100 Subject: Add debug information for ports in clean_openstack Change-Id: I3e7788c36971b132ab685dd55600a449aa1d5128 Signed-off-by: jose.lausuch --- testcases/VIM/OpenStack/CI/libraries/clean_openstack.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'testcases/VIM/OpenStack/CI/libraries') diff --git a/testcases/VIM/OpenStack/CI/libraries/clean_openstack.py b/testcases/VIM/OpenStack/CI/libraries/clean_openstack.py index b77c0ee8c..e20504556 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 ..." -- cgit 1.2.3-korg