sureshanaparti commented on a change in pull request #4141:
URL: https://github.com/apache/cloudstack/pull/4141#discussion_r520571068
##########
File path:
core/src/main/java/com/cloud/agent/api/routing/LoadBalancerConfigCommand.java
##########
@@ -72,4 +82,35 @@ public NicTO getNic() {
public Long getVpcId() {
return vpcId;
}
+
+ public LoadBalancerConfigTO[] getNetworkLbConfigs() {
+ return this.networkLbConfigs;
+ }
+
+ public void setNetworkLbConfigs(List<? extends LoadBalancerConfig>
networkLbConfigs) {
+ if (networkLbConfigs == null) {
+ networkLbConfigs = new ArrayList<LoadBalancerConfig>();
+ }
+ this.networkLbConfigs = new
LoadBalancerConfigTO[networkLbConfigs.size()];
Review comment:
@weizhouapache if you intention is to create an empty array, create `new
LoadBalancerConfigTO[0]` and return when `networkLbConfigs` is null; else just
return.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]