mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-5572: quicevm won't save memory, as it needs pv driver installed
Conflicts: engine/storage/src/org/apache/cloudstack/storage/helper/HypervisorHelperImpl.java
This commit is contained in:
parent
179cdea8e9
commit
e52a4d9306
|
|
@ -111,7 +111,8 @@ public class HypervisorHelperImpl implements HypervisorHelper {
|
|||
String value = configurationDao.getValue("vmsnapshot.create.wait");
|
||||
int wait = NumbersUtil.parseInt(value, 1800);
|
||||
Long hostId = vmSnapshotHelper.pickRunningHost(virtualMachine.getId());
|
||||
VMSnapshotTO vmSnapshotTO = new VMSnapshotTO(1L, UUID.randomUUID().toString(), VMSnapshot.Type.DiskAndMemory, null, null, false, null, true);
|
||||
VMSnapshotTO vmSnapshotTO = new VMSnapshotTO(1L, UUID.randomUUID().toString(), VMSnapshot.Type.Disk, null, null, false,
|
||||
null, true);
|
||||
GuestOSVO guestOS = guestOSDao.findById(virtualMachine.getGuestOSId());
|
||||
List<VolumeObjectTO> volumeTOs = vmSnapshotHelper.getVolumeTOList(virtualMachine.getId());
|
||||
CreateVMSnapshotCommand ccmd =
|
||||
|
|
|
|||
Loading…
Reference in New Issue