daviftorres commented on code in PR #9132: URL: https://github.com/apache/cloudstack/pull/9132#discussion_r2358860112
########## server/src/main/java/com/cloud/vm/UserVmManagerImpl.java: ########## @@ -3838,7 +3838,7 @@ public UserVm createAdvancedSecurityGroupVirtualMachine(DataCenter zone, Service if (networkIdList == null || networkIdList.isEmpty()) { Network networkWithSecurityGroup = _networkModel.getNetworkWithSGWithFreeIPs(owner, zone.getId()); if (networkWithSecurityGroup == null) { - throw new InvalidParameterValueException("No network with security enabled is found in zone id=" + zone.getUuid()); + throw new InvalidParameterValueException("No network with security enabled is found in zone ID=" + zone.getUuid()); Review Comment: ```suggestion throw new InvalidParameterValueException("No network with security enabled is found in zone ID = " + zone.getUuid()); ``` How about that? -- 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