daviftorres commented on code in PR #9132: URL: https://github.com/apache/cloudstack/pull/9132#discussion_r2358866294
########## server/src/main/java/com/cloud/vm/UserVmManagerImpl.java: ########## @@ -5838,7 +5838,7 @@ private Pod getDestinationPod(Long podId, boolean isRootAdmin) { } destinationPod = _podDao.findById(podId); if (destinationPod == null) { - throw new InvalidParameterValueException("Unable to find the pod to deploy the VM, pod id=" + podId); + throw new InvalidParameterValueException("Unable to find the pod to deploy the VM, pod ID=" + podId); Review Comment: ```suggestion throw new InvalidParameterValueException("Unable to find the pod to deploy the VM, pod ID = " + podId); ``` -- 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