itsayushpandey commented on code in PR #7712:
URL: https://github.com/apache/cloudstack/pull/7712#discussion_r1340887950
##########
server/src/main/java/com/cloud/vm/UserVmManagerImpl.java:
##########
@@ -4477,6 +4476,11 @@ private UserVmVO commitUserVm(final boolean isImport,
final DataCenter zone, fin
}
}
+ if (customParameters.containsKey(VmDetailConstants.KVM_VNC_PASSWORD)
+ &&
StringUtils.isNotEmpty(customParameters.get(VmDetailConstants.KVM_VNC_PASSWORD)))
{
+
vm.setVncPassword(customParameters.get(VmDetailConstants.KVM_VNC_PASSWORD));
+ }
Review Comment:
This is relevant to the enhancement as it is used for displaying vnc console
for kvm. I've made changes as per your suggestion.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]