You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by GitBox <gi...@apache.org> on 2022/04/22 09:26:14 UTC

[GitHub] [cloudstack] weizhouapache commented on a diff in pull request #5786: network: ipv6 static routes

weizhouapache commented on code in PR #5786:
URL: https://github.com/apache/cloudstack/pull/5786#discussion_r855967543


##########
server/src/main/java/com/cloud/api/query/vo/NetworkOfferingJoinVO.java:
##########
@@ -395,4 +398,7 @@ public void setZoneName(String zoneName) {
         this.zoneName = zoneName;
     }
 
+    public String getInternetProtocol() {
+        return internetProtocol;

Review Comment:
   @shwstppr 
   advice: return internet protocol= "IPv4"  in network offering response by default ?



##########
api/src/main/java/org/apache/cloudstack/api/response/NetworkResponse.java:
##########
@@ -556,4 +570,20 @@ public boolean getEgressDefaultPolicy() {
     public void setEgressDefaultPolicy(Boolean egressDefaultPolicy) {
         this.egressDefaultPolicy = egressDefaultPolicy;
     }
+
+    public void setInternetProtocol(String internetProtocol) {
+        this.internetProtocol = internetProtocol;
+    }

Review Comment:
   @shwstppr
   advice: return internet protocol= "IPv4" in network response by default and display it on UI ?



##########
server/src/main/java/com/cloud/api/query/vo/VpcOfferingJoinVO.java:
##########
@@ -197,6 +200,10 @@ public String getZoneName() {
         return zoneName;
     }
 
+    public String getInternetProtocol() {
+        return internetProtocol;

Review Comment:
   @shwstppr 
   advice: return internet protocol= "IPv4"  in vpc offering response by default ?



-- 
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-unsubscribe@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org