CLOUDSTACK-3664:

scaling up vms was not considering parameter cluster.(memory/cpu).allocated.capacity.disablethreshold. Fixed it
Also added overprovisioning factor retrieval at the cluster level for host capacity check
This commit is contained in:
Nitin Mehta 2013-12-09 15:03:20 -08:00
parent 5d9335fcc3
commit ebbc9292f3
1 changed files with 2 additions and 2 deletions

View File

@ -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);