rafaelweingartner commented on a change in pull request #2848: Vmware offline migration URL: https://github.com/apache/cloudstack/pull/2848#discussion_r233214319
########## File path: engine/orchestration/src/main/java/com/cloud/vm/VirtualMachineManagerImpl.java ########## @@ -1976,92 +1965,244 @@ public void storageMigration(final String vmUuid, final StoragePool destPool) { private void orchestrateStorageMigration(final String vmUuid, final StoragePool destPool) { final VMInstanceVO vm = _vmDao.findByUuid(vmUuid); + preStorageMigrationStateCheck(destPool, vm); + + try { + if(s_logger.isDebugEnabled()) { + s_logger.debug( + String.format("Offline migration of %s vm %s with volumes", + vm.getHypervisorType().toString(), + vm.getInstanceName())); + } + + migrateThroughHypervisorOrStorage(destPool, vm); + + } catch (ConcurrentOperationException + | InsufficientCapacityException // possibly InsufficientVirtualNetworkCapacityException or InsufficientAddressCapacityException + | StorageUnavailableException e) { + s_logger.debug("Failed to migration: " + e.toString()); + throw new CloudRuntimeException("Failed to migration: " + e.toString()); Review comment: This will break the stack trace. So, what about `throw new CloudRuntimeException(Sring.format ("Failed to migrate VM: %s ", vm.getUuid()), e);` instead? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on 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 With regards, Apache Git Services