Remove message about contacting Cloud support.

CloudStack has gone Apache now.
This commit is contained in:
Wido den Hollander 2012-07-01 15:12:43 +02:00
parent e9c166a44f
commit 1a2f354f4d
1 changed files with 1 additions and 1 deletions

View File

@ -574,7 +574,7 @@ public class UserVmManagerImpl implements UserVmManager, UserVmService, Manager
VolumeVO rootVolumeOfVm = null;
List<VolumeVO> 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);
}