Remove error message if instance is not found 29/9029/1
authorjose.lausuch <jose.lausuch@ericsson.com>
Tue, 2 Feb 2016 10:32:52 +0000 (11:32 +0100)
committerMorgan Richomme <morgan.richomme@orange.com>
Tue, 2 Feb 2016 10:43:57 +0000 (10:43 +0000)
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>
(cherry picked from commit 7dd58acc208727aaed83807f065dedcc899b0137)

testcases/functest_utils.py

index da79c2c..debdc38 100644 (file)
@@ -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