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:
Wilder Rodrigues 2016-01-06 09:08:56 +01:00
parent 61f3706255
commit 94c0dc5dfe
1 changed files with 1 additions and 1 deletions

View File

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