You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ed...@apache.org on 2013/02/07 23:57:20 UTC

git commit: refs/heads/storage_refactor - use correct disk offering id

Updated Branches:
  refs/heads/storage_refactor f5e7de5ce -> 63cfbef4f


use correct disk offering id


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

Branch: refs/heads/storage_refactor
Commit: 63cfbef4f4aa98fbe7d1c44bbff79fe7accec625
Parents: f5e7de5
Author: Edison Su <su...@gmail.com>
Authored: Thu Feb 7 14:57:06 2013 -0800
Committer: Edison Su <su...@gmail.com>
Committed: Thu Feb 7 14:57:06 2013 -0800

----------------------------------------------------------------------
 .../storage/motion/AncientDataMotionStrategy.java  |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/63cfbef4/engine/storage/src/org/apache/cloudstack/storage/motion/AncientDataMotionStrategy.java
----------------------------------------------------------------------
diff --git a/engine/storage/src/org/apache/cloudstack/storage/motion/AncientDataMotionStrategy.java b/engine/storage/src/org/apache/cloudstack/storage/motion/AncientDataMotionStrategy.java
index d686336..70f65c7 100644
--- a/engine/storage/src/org/apache/cloudstack/storage/motion/AncientDataMotionStrategy.java
+++ b/engine/storage/src/org/apache/cloudstack/storage/motion/AncientDataMotionStrategy.java
@@ -282,10 +282,10 @@ public class AncientDataMotionStrategy implements DataMotionStrategy {
     }
     
     protected String cloneVolume(DataObject template, DataObject volume) {
-        
-        DiskOfferingVO offering = diskOfferingDao.findById(volume.getId());
-        VMTemplateStoragePoolVO  tmpltStoredOn =  templatePoolDao.findByPoolTemplate(template.getDataStore().getId(), template.getId());
         VolumeInfo volInfo = (VolumeInfo)volume;
+        DiskOfferingVO offering = diskOfferingDao.findById(volInfo.getDiskOfferingId());
+        VMTemplateStoragePoolVO  tmpltStoredOn =  templatePoolDao.findByPoolTemplate(template.getDataStore().getId(), template.getId());
+        
         DiskProfile diskProfile = new DiskProfile(volInfo, offering,
                 null);
         CreateCommand cmd = new CreateCommand(diskProfile,