mirror of https://github.com/apache/cloudstack.git
Correct the error message when tried created VM Snapshot with memory on a vGPU Instance.
"VM snapshot with MEMORY is not supported for VGU enabled VMs." Change VGU to vGPU.
This commit is contained in:
parent
88561e154f
commit
c5fa7cc494
|
|
@ -263,7 +263,7 @@ public class VMSnapshotManagerImpl extends ManagerBase implements VMSnapshotMana
|
|||
|
||||
// VM snapshot with memory is not supported for VGPU Vms
|
||||
if (snapshotMemory && _serviceOfferingDetailsDao.findDetail(userVmVo.getServiceOfferingId(), GPU.Keys.vgpuType.toString()) != null) {
|
||||
throw new InvalidParameterValueException("VM snapshot with MEMORY is not supported for VGU enabled VMs.");
|
||||
throw new InvalidParameterValueException("VM snapshot with MEMORY is not supported for vGPU enabled VMs.");
|
||||
}
|
||||
|
||||
// check hypervisor capabilities
|
||||
|
|
|
|||
Loading…
Reference in New Issue