You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by re...@apache.org on 2016/01/11 16:23:03 UTC

[02/10] git commit: updated refs/heads/master to b1034ed

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.


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/94c0dc5d
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/94c0dc5d
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/94c0dc5d

Branch: refs/heads/master
Commit: 94c0dc5dfec1d8b20afcbc1e652eb7c9350b4946
Parents: 61f3706
Author: Wilder Rodrigues <wr...@schubergphilis.com>
Authored: Wed Jan 6 09:08:56 2016 +0100
Committer: Wilder Rodrigues <wr...@schubergphilis.com>
Committed: Wed Jan 6 09:48:53 2016 +0100

----------------------------------------------------------------------
 core/src/com/cloud/agent/api/routing/SetNetworkACLCommand.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/94c0dc5d/core/src/com/cloud/agent/api/routing/SetNetworkACLCommand.java
----------------------------------------------------------------------
diff --git a/core/src/com/cloud/agent/api/routing/SetNetworkACLCommand.java b/core/src/com/cloud/agent/api/routing/SetNetworkACLCommand.java
index 395ab5f..59ef668 100644
--- a/core/src/com/cloud/agent/api/routing/SetNetworkACLCommand.java
+++ b/core/src/com/cloud/agent/api/routing/SetNetworkACLCommand.java
@@ -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;