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
parent 8ddf0a42b7
commit 8a46539bc4
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;