sureshanaparti commented on a change in pull request #5380: URL: https://github.com/apache/cloudstack/pull/5380#discussion_r700754874
########## File path: plugins/hypervisors/vmware/src/main/java/com/cloud/hypervisor/vmware/manager/VmwareManagerImpl.java ########## @@ -263,6 +268,24 @@ public VmwareManagerImpl() { _storageMgr = new VmwareStorageManagerImpl(this); } + private boolean isSystemVmIsoCopyNeeded(File srcIso, File destIso) { + if (!destIso.exists()) { + return true; + } + boolean copyNeeded = false; + try { + String srcIsoMd5 = DigestUtils.md5Hex(new FileInputStream(srcIso)); Review comment: _srcIso_ can be null if it doesn't exists, please check. -- 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: commits-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org