You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by we...@apache.org on 2013/11/14 16:51:51 UTC

git commit: updated refs/heads/4.2 to e444a03

Updated Branches:
  refs/heads/4.2 4918e2145 -> e444a0381


remove duplicated scheduled tasks from VpcVirtualNetworkApplianceManagerImpl


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

Branch: refs/heads/4.2
Commit: e444a03819ccf72f61cb04e8428d20cc65b145e1
Parents: 4918e21
Author: Wei Zhou <w....@leaseweb.com>
Authored: Thu Nov 14 16:51:28 2013 +0100
Committer: Wei Zhou <w....@leaseweb.com>
Committed: Thu Nov 14 16:51:28 2013 +0100

----------------------------------------------------------------------
 .../router/VpcVirtualNetworkApplianceManagerImpl.java     | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/e444a038/server/src/com/cloud/network/router/VpcVirtualNetworkApplianceManagerImpl.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/network/router/VpcVirtualNetworkApplianceManagerImpl.java b/server/src/com/cloud/network/router/VpcVirtualNetworkApplianceManagerImpl.java
index fe7fe46..71bcc02 100644
--- a/server/src/com/cloud/network/router/VpcVirtualNetworkApplianceManagerImpl.java
+++ b/server/src/com/cloud/network/router/VpcVirtualNetworkApplianceManagerImpl.java
@@ -1411,5 +1411,15 @@ public class VpcVirtualNetworkApplianceManagerImpl extends VirtualNetworkApplian
     public List<DomainRouterVO> getVpcRouters(long vpcId) {
         return _routerDao.listByVpcId(vpcId);
     }
+    
+    @Override
+    public boolean start() {
+        return true;
+    }
+    
+    @Override
+    public boolean stop() {
+        return true;
+    }    
 
 }