From 7dd58acc208727aaed83807f065dedcc899b0137 Mon Sep 17 00:00:00 2001
From: "jose.lausuch" <jose.lausuch@ericsson.com>
Date: Tue, 2 Feb 2016 11:32:52 +0100
Subject: Remove error message if instance is not found

Reason: vping calls this function until the VMs are deleted,
when that happens, it throws an exception and returns None,
which is fine, but the message error on the output is a
bit confusing if you don't know the context.

Change-Id: I8a4c408197d3c83151fb15a12387575d9fe1d553
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
---
 testcases/functest_utils.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'testcases')

diff --git a/testcases/functest_utils.py b/testcases/functest_utils.py
index da79c2c9..debdc38f 100644
--- a/testcases/functest_utils.py
+++ b/testcases/functest_utils.py
@@ -88,8 +88,8 @@ def get_instance_status(nova_client, instance):
         instance = nova_client.servers.get(instance.id)
         return instance.status
     except Exception, e:
-        print "Error [get_instance_status(nova_client, '%s')]:" % \
-            str(instance), e
+        #print "Error [get_instance_status(nova_client, '%s')]:" % \
+        #    str(instance), e
         return None
 
 
-- 
cgit