diff options
author | Juha Kosonen <juha.kosonen@nokia.com> | 2018-01-31 07:05:01 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-01-31 07:05:01 +0000 |
commit | 41d7f56276e1bb6c5b25695857bcd3ac2408b2ec (patch) | |
tree | e0956d7e4bbfbddfe4ae0349df8852558057e95c /functest | |
parent | 8296b68bbb2e6da34676af2c1e81e264c626296c (diff) | |
parent | 049d8ffac11de402ab7db3e96609faada13c2902 (diff) |
Merge "proper instance status handling"
Diffstat (limited to 'functest')
-rw-r--r-- | functest/utils/openstack_utils.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/functest/utils/openstack_utils.py b/functest/utils/openstack_utils.py index 1d7cdafb..655ca464 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." |