From 0d1f512728f909aec296bf0e1cfbcdcaf2f563f6 Mon Sep 17 00:00:00 2001 From: Harikrishna Patnala Date: Wed, 26 Jun 2013 15:25:40 +0530 Subject: [PATCH] CLOUDSTACK-3208: showing xenhost username and password details in plain text in logs when we pefrom removehost from CS Signed-off-by: Abhinandan Prateek --- .../cloud/hypervisor/xen/resource/XenServerConnectionPool.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/hypervisors/xen/src/com/cloud/hypervisor/xen/resource/XenServerConnectionPool.java b/plugins/hypervisors/xen/src/com/cloud/hypervisor/xen/resource/XenServerConnectionPool.java index e4dd675b334..5af17812bc3 100644 --- a/plugins/hypervisors/xen/src/com/cloud/hypervisor/xen/resource/XenServerConnectionPool.java +++ b/plugins/hypervisors/xen/src/com/cloud/hypervisor/xen/resource/XenServerConnectionPool.java @@ -550,7 +550,7 @@ public class XenServerConnectionPool { } } catch (UuidInvalid e) { String msg = "Host(" + hostUuid + ") doesn't belong to pool(" + poolUuid + "), please execute 'xe pool-join master-address=" + mConn.getIp() - + " master-username=" + mConn.getUsername() + " master-password=" + mConn.getPassword(); + + " master-username=" + mConn.getUsername(); if (s_logger.isDebugEnabled()) { s_logger.debug(msg); }