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