You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ra...@apache.org on 2017/06/06 10:27:21 UTC

[cloudstack] branch master updated (7b1b31d -> c4c692a)

This is an automated email from the ASF dual-hosted git repository.

rajani pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack.git.


    from 7b1b31d  Merge pull request #1865 from anshul1886/CLOUDSTACK-9705
     add 7ea41a5  CLOUDSTACK-9704 Remove dependency on VmwareContext object to fetch system VM key file
     new c4c692a  Merge pull request #1862 from sateesh-chodapuneedi/pr-cloudstack-9704

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../hypervisor/vmware/resource/VmwareResource.java | 57 ++++++++++++++++++----
 1 file changed, 47 insertions(+), 10 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cloudstack.apache.org" <co...@cloudstack.apache.org>'].

[cloudstack] 01/01: Merge pull request #1862 from sateesh-chodapuneedi/pr-cloudstack-9704

Posted by ra...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rajani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack.git

commit c4c692afa52ccb6f6551fad0b49eb1604667018c
Merge: 7b1b31d 7ea41a5
Author: Rajani Karuturi <ka...@users.noreply.github.com>
AuthorDate: Tue Jun 6 15:57:18 2017 +0530

    Merge pull request #1862 from sateesh-chodapuneedi/pr-cloudstack-9704
    
    CLOUDSTACK-9704 Remove dependency on VmwareContext object to fetch systemVM keyfile

 .../hypervisor/vmware/resource/VmwareResource.java | 57 ++++++++++++++++++----
 1 file changed, 47 insertions(+), 10 deletions(-)

diff --cc plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java
index 848cd7f,268984c..fd608ad
--- a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java
+++ b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java
@@@ -882,11 -844,10 +887,11 @@@ public class VmwareResource implements 
          // when we dynamically plug in a new NIC into virtual router, it may take time to show up in guest OS
          // we use a waiting loop here as a workaround to synchronize activities in systems
          long startTick = System.currentTimeMillis();
 -        while (System.currentTimeMillis() - startTick < 15000) {
 +        long waitTimeoutMillis = VmwareManager.s_vmwareNicHotplugWaitTimeout.value();
 +        while (System.currentTimeMillis() - startTick < waitTimeoutMillis) {
  
              // TODO : this is a temporary very inefficient solution, will refactor it later
-             Pair<Boolean, String> result = SshHelper.sshExecute(routerIp, DefaultDomRSshPort, "root", mgr.getSystemVMKeyFile(), null, "ls /proc/sys/net/ipv4/conf");
+             Pair<Boolean, String> result = SshHelper.sshExecute(routerIp, DefaultDomRSshPort, "root", keyFile, null, "ls /proc/sys/net/ipv4/conf");
              if (result.first()) {
                  String[] tokens = result.second().split("\\s+");
                  for (String token : tokens) {

-- 
To stop receiving notification emails like this one, please contact
"commits@cloudstack.apache.org" <co...@cloudstack.apache.org>.