You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ni...@apache.org on 2013/12/18 22:39:46 UTC

git commit: updated refs/heads/4.3 to 00b5e1a

Updated Branches:
  refs/heads/4.3 5d8a2769b -> 00b5e1a19


undo the comments on version check


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

Branch: refs/heads/4.3
Commit: 00b5e1a195309699fc24d079e0a7cc012626b863
Parents: 5d8a276
Author: Nitin Mehta <ni...@citrix.com>
Authored: Wed Dec 18 13:39:36 2013 -0800
Committer: Nitin Mehta <ni...@citrix.com>
Committed: Wed Dec 18 13:39:36 2013 -0800

----------------------------------------------------------------------
 .../cloud/network/router/VirtualNetworkApplianceManagerImpl.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/00b5e1a1/server/src/com/cloud/network/router/VirtualNetworkApplianceManagerImpl.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/network/router/VirtualNetworkApplianceManagerImpl.java b/server/src/com/cloud/network/router/VirtualNetworkApplianceManagerImpl.java
index 7d9805b..6c6481d 100755
--- a/server/src/com/cloud/network/router/VirtualNetworkApplianceManagerImpl.java
+++ b/server/src/com/cloud/network/router/VirtualNetworkApplianceManagerImpl.java
@@ -3433,9 +3433,9 @@ public class VirtualNetworkApplianceManagerImpl extends ManagerBase implements V
     }
 
     protected boolean sendCommandsToRouter(final VirtualRouter router, Commands cmds) throws AgentUnavailableException {
-       /*if(!checkRouterVersion(router)){
+        if(!checkRouterVersion(router)){
             throw new CloudRuntimeException("Router requires upgrade. Unable to send command to router:" + router.getId());
-        }*/
+        }
         Answer[] answers = null;
         try {
             answers = _agentMgr.send(router.getHostId(), cmds);