From 1a2f354f4dd0b9491dfd24c92776da2f442b454e Mon Sep 17 00:00:00 2001 From: Wido den Hollander Date: Sun, 1 Jul 2012 15:12:43 +0200 Subject: [PATCH] Remove message about contacting Cloud support. CloudStack has gone Apache now. --- server/src/com/cloud/vm/UserVmManagerImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/com/cloud/vm/UserVmManagerImpl.java b/server/src/com/cloud/vm/UserVmManagerImpl.java index 101e35a491e..d9203f6e8ed 100755 --- a/server/src/com/cloud/vm/UserVmManagerImpl.java +++ b/server/src/com/cloud/vm/UserVmManagerImpl.java @@ -574,7 +574,7 @@ public class UserVmManagerImpl implements UserVmManager, UserVmService, Manager VolumeVO rootVolumeOfVm = null; List rootVolumesOfVm = _volsDao.findByInstanceAndType(vmId, Volume.Type.ROOT); if (rootVolumesOfVm.size() != 1) { - throw new CloudRuntimeException("The VM " + vm.getHostName() + " has more than one ROOT volume and is in an invalid state. Please contact Cloud Support."); + throw new CloudRuntimeException("The VM " + vm.getHostName() + " has more than one ROOT volume and is in an invalid state."); } else { rootVolumeOfVm = rootVolumesOfVm.get(0); }