From a118e167bd1184151ac2b3a3b4d436cc85b8b9d8 Mon Sep 17 00:00:00 2001 From: Santhosh Edukulla Date: Wed, 11 Dec 2013 13:04:17 +0530 Subject: [PATCH] Added a temp sleep fix for vm start command Added a temporary time sleep fix post a restart command. Applies to 4.2,master,4.3 Note: Has to clean other things as well and will do more cleaner way of handling things. --- test/integration/smoke/test_volumes.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/integration/smoke/test_volumes.py b/test/integration/smoke/test_volumes.py index 816ae03f267..8f418036385 100644 --- a/test/integration/smoke/test_volumes.py +++ b/test/integration/smoke/test_volumes.py @@ -621,6 +621,8 @@ class TestVolumes(cloudstackTestCase): ) if hosts[0].hypervisor == "XenServer": self.virtual_machine.start(self.apiClient) + time.sleep(30) + return @attr(tags = ["advanced", "advancedns", "smoke", "basic"]) @@ -680,6 +682,8 @@ class TestVolumes(cloudstackTestCase): if hosts[0].hypervisor == "XenServer": self.virtual_machine.start(self.apiClient) + time.sleep(30) + return @attr(tags = ["advanced", "advancedns", "smoke","basic"]) def test_09_delete_detached_volume(self):