DaanHoogland commented on code in PR #10746:
URL: https://github.com/apache/cloudstack/pull/10746#discussion_r2050582529


##########
server/src/main/java/com/cloud/network/NetworkServiceImpl.java:
##########
@@ -1644,9 +1644,7 @@ public Network createGuestNetwork(CreateNetworkCmd cmd) 
throws InsufficientCapac
             if (ipv4 && Objects.isNull(startIP)) {
                 throw new CloudRuntimeException("IPv4 address range needs to 
be provided");
             }
-            if (ipv6 && Objects.isNull(startIPv6)) {
-                throw new CloudRuntimeException("IPv6 address range needs to 
be provided");
-            }
+            // if (ipv6) ignore entries

Review Comment:
   ```suggestion
               if (ipv6) {
                   logger.info("ip range for network '{}' is specified as {} - 
{}", name, startIPv6, endIPv6);
               }
   ```



-- 
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

Reply via email to