Repository: cloudstack
Updated Branches:
  refs/heads/master b43036d10 -> aa21cdcd4


CLOUDSTACK-6897: when we try to attach the uploaded/allocated volume to a VM on 
zwps, then we were passing the podId of VM instead of storage pool to storage 
allocator. This resulting in use of Clusterscope storage allocator, allocating 
a storage pool for VM on zwps beacuse of pod id not null. This was resulting in 
scope conflict later


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/aa21cdcd
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/aa21cdcd
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/aa21cdcd

Branch: refs/heads/master
Commit: aa21cdcd494aff1df119d2e17a3a51da861e3f51
Parents: b43036d
Author: Anshul Gangwar <[email protected]>
Authored: Fri Jun 13 14:36:42 2014 +0530
Committer: Devdeep Singh <[email protected]>
Committed: Fri Jun 13 14:47:00 2014 +0530

----------------------------------------------------------------------
 .../cloudstack/engine/orchestration/VolumeOrchestrator.java     | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/aa21cdcd/engine/orchestration/src/org/apache/cloudstack/engine/orchestration/VolumeOrchestrator.java
----------------------------------------------------------------------
diff --git 
a/engine/orchestration/src/org/apache/cloudstack/engine/orchestration/VolumeOrchestrator.java
 
b/engine/orchestration/src/org/apache/cloudstack/engine/orchestration/VolumeOrchestrator.java
index 3cf8c6c..eea931e 100644
--- 
a/engine/orchestration/src/org/apache/cloudstack/engine/orchestration/VolumeOrchestrator.java
+++ 
b/engine/orchestration/src/org/apache/cloudstack/engine/orchestration/VolumeOrchestrator.java
@@ -30,6 +30,8 @@ import java.util.concurrent.ExecutionException;
 import javax.inject.Inject;
 import javax.naming.ConfigurationException;
 
+import org.apache.log4j.Logger;
+
 import 
org.apache.cloudstack.engine.orchestration.service.VolumeOrchestrationService;
 import org.apache.cloudstack.engine.subsystem.api.storage.ChapInfo;
 import org.apache.cloudstack.engine.subsystem.api.storage.DataStore;
@@ -56,7 +58,6 @@ import 
org.apache.cloudstack.storage.datastore.db.PrimaryDataStoreDao;
 import org.apache.cloudstack.storage.datastore.db.StoragePoolVO;
 import org.apache.cloudstack.storage.datastore.db.TemplateDataStoreDao;
 import org.apache.cloudstack.storage.datastore.db.TemplateDataStoreVO;
-import org.apache.log4j.Logger;
 
 import com.cloud.agent.api.to.DataTO;
 import com.cloud.agent.api.to.DiskTO;
@@ -751,7 +752,7 @@ public class VolumeOrchestrator extends ManagerBase 
implements VolumeOrchestrati
     public VolumeInfo createVolumeOnPrimaryStorage(VirtualMachine vm, 
VolumeInfo volume, HypervisorType rootDiskHyperType, StoragePool storagePool) 
throws NoTransitionException {
         VirtualMachineTemplate rootDiskTmplt = 
_entityMgr.findById(VirtualMachineTemplate.class, vm.getTemplateId());
         DataCenter dcVO = _entityMgr.findById(DataCenter.class, 
vm.getDataCenterId());
-        Pod pod = _entityMgr.findById(Pod.class, vm.getPodIdToDeployIn());
+        Pod pod = _entityMgr.findById(Pod.class, storagePool.getPodId());
 
         ServiceOffering svo = _entityMgr.findById(ServiceOffering.class, 
vm.getServiceOfferingId());
         DiskOffering diskVO = _entityMgr.findById(DiskOffering.class, 
volume.getDiskOfferingId());

Reply via email to