Fix recent changes in DeploymentPlanner

This commit is contained in:
Kelven Yang 2013-06-12 15:30:24 -07:00
parent 39dd4bd26b
commit 2892469cf4
2 changed files with 1 additions and 1 deletions

View File

@ -650,7 +650,6 @@
<bean id="clusteredVirtualMachineManagerImpl" class="com.cloud.vm.ClusteredVirtualMachineManagerImpl" >
<property name="HostAllocators" value="#{hostAllocators.Adapters}" />
<property name="Planners" value="#{deploymentPlanners.Adapters}" />
</bean>
<bean id="networkManagerImpl" class="com.cloud.network.NetworkManagerImpl" >

View File

@ -213,6 +213,7 @@ public class VirtualMachineManagerImpl extends ManagerBase implements VirtualMac
@Inject
protected AffinityGroupVMMapDao _affinityGroupVMMapDao;
@Inject
protected List<DeploymentPlanner> _planners;
protected List<HostAllocator> _hostAllocators;