You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by wi...@apache.org on 2012/07/01 15:13:22 UTC

git commit: Remove message about contacting Cloud support.

Updated Branches:
  refs/heads/master e9c166a44 -> 1a2f354f4


Remove message about contacting Cloud support.

CloudStack has gone Apache now.


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/1a2f354f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/1a2f354f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/1a2f354f

Branch: refs/heads/master
Commit: 1a2f354f4dd0b9491dfd24c92776da2f442b454e
Parents: e9c166a
Author: Wido den Hollander <wi...@widodh.nl>
Authored: Sun Jul 1 15:12:43 2012 +0200
Committer: Wido den Hollander <wi...@widodh.nl>
Committed: Sun Jul 1 15:12:43 2012 +0200

----------------------------------------------------------------------
 server/src/com/cloud/vm/UserVmManagerImpl.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/1a2f354f/server/src/com/cloud/vm/UserVmManagerImpl.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/vm/UserVmManagerImpl.java b/server/src/com/cloud/vm/UserVmManagerImpl.java
index 101e35a..d9203f6 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<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);
         }