You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ra...@apache.org on 2014/05/05 10:23:34 UTC

git commit: updated refs/heads/master to cc92f3b

Repository: cloudstack
Updated Branches:
  refs/heads/master f9cf2c241 -> cc92f3bbe


Fixed testSetupGuestNetwork unit test as the SetupGuestnetwork prepare command got changed


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

Branch: refs/heads/master
Commit: cc92f3bbe31ac7c3279f18070166f4578ec8f695
Parents: f9cf2c2
Author: Rajesh Battala <ra...@citrix.com>
Authored: Mon May 5 13:30:57 2014 +0530
Committer: Rajesh Battala <ra...@citrix.com>
Committed: Mon May 5 13:45:12 2014 +0530

----------------------------------------------------------------------
 .../agent/resource/virtualnetwork/VirtualRoutingResource.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/cc92f3bb/core/src/com/cloud/agent/resource/virtualnetwork/VirtualRoutingResource.java
----------------------------------------------------------------------
diff --git a/core/src/com/cloud/agent/resource/virtualnetwork/VirtualRoutingResource.java b/core/src/com/cloud/agent/resource/virtualnetwork/VirtualRoutingResource.java
index a8986a3..7bb6f5e 100755
--- a/core/src/com/cloud/agent/resource/virtualnetwork/VirtualRoutingResource.java
+++ b/core/src/com/cloud/agent/resource/virtualnetwork/VirtualRoutingResource.java
@@ -783,10 +783,10 @@ public class VirtualRoutingResource {
         String args = "";
         if(cmd.isAdd() == false) {
             //pass the argument to script to delete the network
-            args +=" -D ";
+            args +=" -D";
         } else {
             // pass create option argument if the ip needs to be added to eth device
-            args +=" -C ";
+            args +=" -C";
         }
         args += " -M " + nic.getMac();
         args += " -d " + dev;