mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-9213 - Split the ACL rules using comma instead of dash.
- The router code no longer deals with parsing the ALC list again. It's not necessary if it's sent in the proper way.
This commit is contained in:
parent
61f3706255
commit
94c0dc5dfe
|
|
@ -83,7 +83,7 @@ public class SetNetworkACLCommand extends NetworkElementCommand {
|
|||
Boolean firstEntry = true;
|
||||
for (final String tag : cidr) {
|
||||
if (!firstEntry) {
|
||||
sb.append("-");
|
||||
sb.append(",");
|
||||
}
|
||||
sb.append(tag);
|
||||
firstEntry = false;
|
||||
|
|
|
|||
Loading…
Reference in New Issue