nvazquez commented on code in PR #9410:
URL: https://github.com/apache/cloudstack/pull/9410#discussion_r1691716839


##########
server/src/main/java/com/cloud/configuration/ConfigurationManagerImpl.java:
##########
@@ -6412,6 +6420,23 @@ public NetworkOffering createNetworkOffering(final 
CreateNetworkOfferingCmd cmd)
         return offering;
     }
 
+    public static NetworkOffering.RoutingMode verifyRoutingMode(String 
routingModeString) {
+        NetworkOffering.RoutingMode routingMode = null;
+        if (routingModeString != null) {
+            try {
+                if 
(!SUPPORTED_ROUTING_MODE_STRS.contains(routingModeString.toLowerCase())) {

Review Comment:
   Thanks @weizhouapache but I think those won't be needed here



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to