You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by li...@apache.org on 2013/11/07 06:57:05 UTC

git commit: updated refs/heads/master to 01b29a0

Updated Branches:
  refs/heads/master 10c513a25 -> 01b29a0ca


CLOUDSTACK-3715. Increasing VMware vCenter session timeout value to 20 minutes from 10 minutes.


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

Branch: refs/heads/master
Commit: 01b29a0caf2ebb196624e2e0eeaab00e0de5386a
Parents: 10c513a
Author: Likitha Shetty <li...@citrix.com>
Authored: Thu Nov 7 11:05:30 2013 +0530
Committer: Likitha Shetty <li...@citrix.com>
Committed: Thu Nov 7 11:20:31 2013 +0530

----------------------------------------------------------------------
 .../src/com/cloud/hypervisor/vmware/util/VmwareClient.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/01b29a0c/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java
----------------------------------------------------------------------
diff --git a/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java b/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java
index d1adbc2..13172fb 100644
--- a/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java
+++ b/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java
@@ -132,8 +132,8 @@ public class VmwareClient {
         ctxt.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, url);
         ctxt.put(BindingProvider.SESSION_MAINTAIN_PROPERTY, true);
 
-        ctxt.put("com.sun.xml.internal.ws.request.timeout", 600000);
-        ctxt.put("com.sun.xml.internal.ws.connect.timeout", 600000);
+        ctxt.put("com.sun.xml.internal.ws.request.timeout", 1200000);
+        ctxt.put("com.sun.xml.internal.ws.connect.timeout", 1200000);
 
         ServiceContent serviceContent = vimPort.retrieveServiceContent(SVC_INST_REF);