CLOUDSTACK-6329 [Automation] Changing service offering of VM from medium to small failing with NPE

- The hostAllocators were not getting set
This commit is contained in:
Prachi Damle 2014-04-03 22:41:03 -07:00 committed by Min Chen
parent 7819775bb8
commit 6397f1c82e
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ public class VirtualMachineManagerImpl extends ManagerBase implements VirtualMac
}
public void setHostAllocators(List<HostAllocator> hostAllocators) {
hostAllocators = hostAllocators;
this.hostAllocators = hostAllocators;
}
protected List<StoragePoolAllocator> _storagePoolAllocators;