mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-10-26 08:42:29 +01:00 
			
		
		
		
	CLOUDSTACK-7973: Proper handler for FenceCommand in simulator
Added a proper handler for FenceCommand in simulator
This commit is contained in:
		
							parent
							
								
									a45ddb514c
								
							
						
					
					
						commit
						bf56584528
					
				| @ -56,6 +56,7 @@ import com.cloud.agent.api.CreateVMSnapshotCommand; | |||||||
| import com.cloud.agent.api.CreateVolumeFromSnapshotCommand; | import com.cloud.agent.api.CreateVolumeFromSnapshotCommand; | ||||||
| import com.cloud.agent.api.DeleteStoragePoolCommand; | import com.cloud.agent.api.DeleteStoragePoolCommand; | ||||||
| import com.cloud.agent.api.DeleteVMSnapshotCommand; | import com.cloud.agent.api.DeleteVMSnapshotCommand; | ||||||
|  | import com.cloud.agent.api.FenceCommand; | ||||||
| import com.cloud.agent.api.GetDomRVersionCmd; | import com.cloud.agent.api.GetDomRVersionCmd; | ||||||
| import com.cloud.agent.api.GetHostStatsCommand; | import com.cloud.agent.api.GetHostStatsCommand; | ||||||
| import com.cloud.agent.api.GetStorageStatsCommand; | import com.cloud.agent.api.GetStorageStatsCommand; | ||||||
| @ -419,6 +420,8 @@ public class SimulatorManagerImpl extends ManagerBase implements SimulatorManage | |||||||
|                     answer = _mockNetworkMgr.setupPVLAN((PvlanSetupCommand)cmd); |                     answer = _mockNetworkMgr.setupPVLAN((PvlanSetupCommand)cmd); | ||||||
|                 } else if (cmd instanceof StorageSubSystemCommand) { |                 } else if (cmd instanceof StorageSubSystemCommand) { | ||||||
|                     answer = this.storageHandler.handleStorageCommands((StorageSubSystemCommand)cmd); |                     answer = this.storageHandler.handleStorageCommands((StorageSubSystemCommand)cmd); | ||||||
|  |                 } else if (cmd instanceof FenceCommand) { | ||||||
|  |                     answer = _mockVmMgr.fence((FenceCommand)cmd); | ||||||
|                 } else if (cmd instanceof GetRouterAlertsCommand || cmd instanceof VpnUsersCfgCommand || cmd instanceof RemoteAccessVpnCfgCommand || cmd instanceof SetMonitorServiceCommand || cmd instanceof AggregationControlCommand || |                 } else if (cmd instanceof GetRouterAlertsCommand || cmd instanceof VpnUsersCfgCommand || cmd instanceof RemoteAccessVpnCfgCommand || cmd instanceof SetMonitorServiceCommand || cmd instanceof AggregationControlCommand || | ||||||
|                         cmd instanceof SecStorageFirewallCfgCommand) { |                         cmd instanceof SecStorageFirewallCfgCommand) { | ||||||
|                     answer = new Answer(cmd); |                     answer = new Answer(cmd); | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user