From abe4c7197f4c04e39757889e8b4db496569aef9f Mon Sep 17 00:00:00 2001 From: "jose.lausuch" Date: Thu, 24 Dec 2015 18:16:26 +0100 Subject: Fix timeout in vPing when booting a VM Change-Id: I9ee487dd5e142d2e92a92b0ba4ccc80b1a4cd063 Signed-off-by: jose.lausuch --- testcases/vPing/CI/libraries/vPing.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/testcases/vPing/CI/libraries/vPing.py b/testcases/vPing/CI/libraries/vPing.py index cc52f5ab6..d9ceb2f6d 100644 --- a/testcases/vPing/CI/libraries/vPing.py +++ b/testcases/vPing/CI/libraries/vPing.py @@ -121,9 +121,12 @@ def waitVmActive(nova, vm): logger.debug("Status: %s" % status) if status == "ACTIVE": return True - if status == "ERROR" or count == 0: + if status == "ERROR" or status == "error": return False - count -= 1 + if count == 0: + logger.debug("Booting a VM timed out...") + return False + count -= 1 time.sleep(sleep_time) return False -- cgit 1.2.3-korg