Github user remibergsma commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/1297#discussion_r64153911 --- Diff: server/src/com/cloud/vm/UserVmManagerImpl.java --- @@ -2451,6 +2455,21 @@ public UserVm updateVirtualMachine(long id, String displayName, String group, Bo isDynamicallyScalable = vm.isDynamicallyScalable(); } + // Get default guest network in Basic zone + DataCenterVO zone = _dcDao.findById(vm.getDataCenterId()); + Network defaultNetwork = _networkModel.getExclusiveGuestNetwork(zone.getId()); + + boolean isVmWare = (vm.getHypervisorType() == HypervisorType.VMware); --- End diff -- Small detail: Please check the spelling of VMware, I see lots of different variations and believe VMware is the right one.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---