You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by de...@apache.org on 2013/07/26 07:39:19 UTC

git commit: updated refs/heads/master to 62c8df9

Updated Branches:
  refs/heads/master fd62a22b6 -> 62c8df9dc


CLOUDSTACK-3590. Adding new xenserver host to cluster fails in first attempt. While adding
a host to the pool it may take a little longer to join the pool. Increased the time the
resource waits and checks to make sure the host has joined as slave to the pool.


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

Branch: refs/heads/master
Commit: 62c8df9dcdabdc460ad5fb441a3c98e8f6b100aa
Parents: fd62a22
Author: Devdeep Singh <de...@gmail.com>
Authored: Fri Jul 26 10:57:37 2013 +0530
Committer: Devdeep Singh <de...@gmail.com>
Committed: Fri Jul 26 11:01:29 2013 +0530

----------------------------------------------------------------------
 .../com/cloud/hypervisor/xen/resource/XenServerConnectionPool.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/62c8df9d/plugins/hypervisors/xen/src/com/cloud/hypervisor/xen/resource/XenServerConnectionPool.java
----------------------------------------------------------------------
diff --git a/plugins/hypervisors/xen/src/com/cloud/hypervisor/xen/resource/XenServerConnectionPool.java b/plugins/hypervisors/xen/src/com/cloud/hypervisor/xen/resource/XenServerConnectionPool.java
index 5af1781..cb188d5 100644
--- a/plugins/hypervisors/xen/src/com/cloud/hypervisor/xen/resource/XenServerConnectionPool.java
+++ b/plugins/hypervisors/xen/src/com/cloud/hypervisor/xen/resource/XenServerConnectionPool.java
@@ -197,7 +197,7 @@ public class XenServerConnectionPool {
                     }
                 }
                 try {
-                    Thread.sleep(2000);
+                    Thread.sleep(3000);
                 } catch (InterruptedException e) {
                 } 
             }