Spaceman1984 commented on a change in pull request #4084: URL: https://github.com/apache/cloudstack/pull/4084#discussion_r444744441
########## File path: plugins/hypervisors/vmware/src/main/java/com/cloud/hypervisor/vmware/manager/VmwareManagerImpl.java ########## @@ -831,8 +832,12 @@ protected String mount(String path, String parent, Integer nfsVersion) { String result = null; Script command = new Script(true, "mount", _timeout, s_logger); command.add("-t", "nfs"); - if (nfsVersion != null){ - command.add("-o", "vers=" + nfsVersion); + if (nfsMajorVersion != null){ + String nfsVersion = "vers=" + nfsMajorVersion; + if (nfsMinorVersion != null && nfsMajorVersion >= 4) { Review comment: I'll change it to 1 field ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org