From 8ad6b3c7e9be9b0d8ee90efc93c0508b00fc6524 Mon Sep 17 00:00:00 2001 From: Abhinandan Prateek Date: Thu, 3 Apr 2014 10:22:53 +0530 Subject: [PATCH] Revert "CLOUDSTACK-6286: added FinishAggregationCommand and StartAggregationCommand to simulator" This reverts commit 9ddfbe11286b874ea7717ec3545daff4a20d3865. REverting as the dependency is not there in git. --- .../src/com/cloud/agent/manager/SimulatorManagerImpl.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/hypervisors/simulator/src/com/cloud/agent/manager/SimulatorManagerImpl.java b/plugins/hypervisors/simulator/src/com/cloud/agent/manager/SimulatorManagerImpl.java index ca0eca29a4b..cf1429aeb1d 100644 --- a/plugins/hypervisors/simulator/src/com/cloud/agent/manager/SimulatorManagerImpl.java +++ b/plugins/hypervisors/simulator/src/com/cloud/agent/manager/SimulatorManagerImpl.java @@ -369,8 +369,7 @@ public class SimulatorManagerImpl extends ManagerBase implements SimulatorManage return _mockNetworkMgr.setupPVLAN((PvlanSetupCommand)cmd); } else if (cmd instanceof StorageSubSystemCommand) { return this.storageHandler.handleStorageCommands((StorageSubSystemCommand)cmd); - } else if (cmd instanceof VpnUsersCfgCommand || cmd instanceof RemoteAccessVpnCfgCommand || cmd instanceof SetMonitorServiceCommand || - cmd instanceof FinishAggregationCommand || cmd instanceof StartAggregationCommand) { + } else if (cmd instanceof VpnUsersCfgCommand || cmd instanceof RemoteAccessVpnCfgCommand || cmd instanceof SetMonitorServiceCommand) { return new Answer(cmd); } else { s_logger.error("Simulator does not implement command of type " + cmd.toString());