From: Periyasamy Palanisamy Date: Fri, 26 Jan 2018 08:56:12 +0000 (+0100) Subject: proper instance status handling X-Git-Tag: opnfv-6.0.0~213^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=049d8ffac11de402ab7db3e96609faada13c2902;p=functest.git proper instance status handling This would fix the exception happening in the SDNVPN CI testsuite. Example: http://artifacts.opnfv.org/logs/functest/lf-pod1/2018-01-21_17-18-06/bgpvpn.log Change-Id: Ie22dcdbba5299177d4e98e5995433553df5bfa68 Signed-off-by: Periyasamy Palanisamy --- diff --git a/functest/utils/openstack_utils.py b/functest/utils/openstack_utils.py index 1d7cdafb9..655ca464f 100644 --- a/functest/utils/openstack_utils.py +++ b/functest/utils/openstack_utils.py @@ -519,7 +519,10 @@ def create_instance_and_wait_for_active(flavor_name, count = VM_BOOT_TIMEOUT / SLEEP for n in range(count, -1, -1): status = get_instance_status(nova_client, instance) - if status.lower() == "active": + if status is None: + time.sleep(SLEEP) + continue + elif status.lower() == "active": return instance elif status.lower() == "error": logger.error("The instance %s went to ERROR status."