Updated Branches: refs/heads/master 50b4c9cbd -> 32c7e1d88
fix up the hostaffinity processors from loading hostaffinity don't load by default anymore Signed-off-by: Prasanna Santhanam <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/32c7e1d8 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/32c7e1d8 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/32c7e1d8 Branch: refs/heads/master Commit: 32c7e1d88007dc271eba8a3bf53877b2050cd30f Parents: 50b4c9c Author: Prasanna Santhanam <[email protected]> Authored: Tue Apr 16 13:54:16 2013 +0530 Committer: Prasanna Santhanam <[email protected]> Committed: Tue Apr 16 13:54:53 2013 +0530 ---------------------------------------------------------------------- client/tomcatconf/simulatorComponentContext.xml.in | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/32c7e1d8/client/tomcatconf/simulatorComponentContext.xml.in ---------------------------------------------------------------------- diff --git a/client/tomcatconf/simulatorComponentContext.xml.in b/client/tomcatconf/simulatorComponentContext.xml.in index 435b9e2..9d8c6c0 100644 --- a/client/tomcatconf/simulatorComponentContext.xml.in +++ b/client/tomcatconf/simulatorComponentContext.xml.in @@ -218,12 +218,19 @@ class="org.apache.cloudstack.region.gslb.GlobalLoadBalancingRulesServiceImpl"/> <!-- - AffinityGroup Processors + AffinityGroup Processors --> <bean id="HostAntiAffinityProcessor" class="org.apache.cloudstack.affinity.HostAntiAffinityProcessor"> <property name="name" value="HostAntiAffinityProcessor"/> <property name="type" value="host anti-affinity"/> </bean> + <bean id="affinityProcessors" class="com.cloud.utils.component.AdapterList"> + <property name="Adapters"> + <list> + <ref bean="HostAntiAffinityProcessor" /> + </list> + </property> + </bean> </beans>
