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:08:33 UTC

git commit: updated refs/heads/4.4-forward to 144990d

Repository: cloudstack
Updated Branches:
  refs/heads/4.4-forward cf41ccaa5 -> 144990df1


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/144990df
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/144990df
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/144990df

Branch: refs/heads/4.4-forward
Commit: 144990df11b2d7eb2ece50a043aea26b9eddfdda
Parents: cf41cca
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:30:57 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/144990df/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;