You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by gi...@apache.org on 2013/12/11 08:41:03 UTC

git commit: updated refs/heads/4.3 to 669d432

Updated Branches:
  refs/heads/4.3 d221efcf8 -> 669d4322a


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.


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/669d4322
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/669d4322
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/669d4322

Branch: refs/heads/4.3
Commit: 669d4322a653061edd62fab7c7889a1945be7d89
Parents: d221efc
Author: Santhosh Edukulla <Sa...@citrix.com>
Authored: Wed Dec 11 13:04:17 2013 +0530
Committer: Girish Shilamkar <gi...@clogeny.com>
Committed: Wed Dec 11 13:10:15 2013 +0530

----------------------------------------------------------------------
 test/integration/smoke/test_volumes.py | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/669d4322/test/integration/smoke/test_volumes.py
----------------------------------------------------------------------
diff --git a/test/integration/smoke/test_volumes.py b/test/integration/smoke/test_volumes.py
index 816ae03..8f41803 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):