You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ek...@apache.org on 2015/06/29 10:43:50 UTC

[12/15] git commit: updated refs/heads/master to 527d6ee

Improving exception message

  - Adding both ID and UUID of the host

Signed-off-by: wilderrodrigues <wr...@schubergphilis.com>


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

Branch: refs/heads/master
Commit: 3367ecc71cda30ccb51838f2c9316e13f582b50a
Parents: 284e2d6
Author: wilderrodrigues <wr...@schubergphilis.com>
Authored: Thu Jun 25 12:09:09 2015 +0200
Committer: wilderrodrigues <wr...@schubergphilis.com>
Committed: Mon Jun 29 09:59:11 2015 +0200

----------------------------------------------------------------------
 server/src/com/cloud/resource/ResourceManagerImpl.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/3367ecc7/server/src/com/cloud/resource/ResourceManagerImpl.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/resource/ResourceManagerImpl.java b/server/src/com/cloud/resource/ResourceManagerImpl.java
index 5e6322e..00bdb92 100644
--- a/server/src/com/cloud/resource/ResourceManagerImpl.java
+++ b/server/src/com/cloud/resource/ResourceManagerImpl.java
@@ -2257,7 +2257,7 @@ public class ResourceManagerImpl extends ManagerBase implements ResourceManager,
             }
             final boolean isUpdated = doUpdateHostPassword(host.getId());
             if (!isUpdated) {
-                throw new CloudRuntimeException("CloudStack failed to update the password of the Host with ID ==> " + host.getId() + ". Please make sure you are still able to connect to your hosts.");
+                throw new CloudRuntimeException("CloudStack failed to update the password of the Host with UUID/ID ==> " + host.getUuid() + "/" + host.getId() + ". Please make sure you are still able to connect to your hosts.");
             }
         }