From 2783cf540b15323b9fc1e0ced0ad850f694ed479 Mon Sep 17 00:00:00 2001 From: Bharat Kumar Date: Tue, 11 Nov 2014 19:34:35 +0530 Subject: [PATCH] CLOUDSTACK-7348 InvalidParameter Exception while executing scale vm. We do not throw the exceptions any more, so added info in the logs to say what happend to this command. Signed-off-by: Rajani Karuturi (cherry picked from commit 659edb4d9b64377a52eb587ab07039e6badb604e) --- server/src/com/cloud/vm/UserVmManagerImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/src/com/cloud/vm/UserVmManagerImpl.java b/server/src/com/cloud/vm/UserVmManagerImpl.java index eb9e0daf143..46275bea5b3 100644 --- a/server/src/com/cloud/vm/UserVmManagerImpl.java +++ b/server/src/com/cloud/vm/UserVmManagerImpl.java @@ -1364,7 +1364,8 @@ public class UserVmManagerImpl extends ManagerBase implements UserVmManager, Vir Account caller = CallContext.current().getCallingAccount(); VMInstanceVO vmInstance = _vmInstanceDao.findById(vmId); if (vmInstance.getHypervisorType() != HypervisorType.XenServer && vmInstance.getHypervisorType() != HypervisorType.VMware) { - throw new InvalidParameterValueException("This operation not permitted for this hypervisor of the vm"); + s_logger.info("Scaling the VM dynamically is not supported for VMs running on Hypervisor "+vmInstance.getHypervisorType()); + throw new InvalidParameterValueException("Scaling the VM dynamically is not supported for VMs running on Hypervisor "+vmInstance.getHypervisorType()); } _accountMgr.checkAccess(caller, null, true, vmInstance);