daviftorres commented on code in PR #9132: URL: https://github.com/apache/cloudstack/pull/9132#discussion_r2358870996
########## server/src/main/java/com/cloud/vm/UserVmManagerImpl.java: ########## @@ -7077,14 +7077,14 @@ public VirtualMachine migrateVirtualMachine(Long vmId, Host destinationHost) thr VMInstanceVO vm = _vmInstanceDao.findById(vmId); if (vm == null) { - throw new InvalidParameterValueException("Unable to find the VM by id=" + vmId); + throw new InvalidParameterValueException("Unable to find the VM by ID=" + vmId); Review Comment: ```suggestion throw new InvalidParameterValueException("Unable to find the VM by ID = " + vmId); ``` -- 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