mirror of https://github.com/apache/cloudstack.git
temporary fix: autowriring failing for missing storage allocator
The storage allocator beans were given with the wrong package namespace of com.cloud and not org.apache.cloudstack. Removed and correctedt the namespace. Server coems up successfully. Edison to revisit and complete the fix. Signed-off-by: Prasanna Santhanam <tsp@apache.org>
This commit is contained in:
parent
3e0bdaac1e
commit
d68b6c3e54
|
|
@ -101,11 +101,19 @@
|
|||
<bean id="FirstFitRouting" class="com.cloud.agent.manager.allocator.impl.FirstFitRoutingAllocator">
|
||||
<property name="name" value="FirstFitRouting"/>
|
||||
</bean>
|
||||
|
||||
|
||||
<!--
|
||||
Storage pool allocators
|
||||
-->
|
||||
|
||||
<bean id="LocalStoragePoolAllocator" class="org.apache.cloudstack.storage.allocator.LocalStoragePoolAllocator">
|
||||
<property name="name" value="LocalStorage"/>
|
||||
</bean>
|
||||
<bean id="FirstFitStoragePoolAllocator" class="org.apache.cloudstack.storage.allocator.FirstFitStoragePoolAllocator">
|
||||
<property name="name" value="Storage"/>
|
||||
</bean>
|
||||
|
||||
<bean id="UserConcentratedAllocator" class="com.cloud.agent.manager.allocator.impl.UserConcentratedAllocator">
|
||||
<property name="name" value="User First"/>
|
||||
</bean>
|
||||
|
|
|
|||
Loading…
Reference in New Issue