Alon Bar-Lev has uploaded a new change for review. Change subject: host-deploy: rephrase authentication error text ......................................................................
host-deploy: rephrase authentication error text Change-Id: If26f7e7aafeed6ec1dc1ba13f038415fe4f2e40b Signed-off-by: Alon Bar-Lev <[email protected]> --- M backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/ssh/SSHClient.java 1 file changed, 3 insertions(+), 3 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/83/17283/1 diff --git a/backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/ssh/SSHClient.java b/backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/ssh/SSHClient.java index ce839c6..68e8e51 100644 --- a/backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/ssh/SSHClient.java +++ b/backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/ssh/SSHClient.java @@ -357,12 +357,12 @@ if (!afuture.isSuccess()) { throw new AuthenticationException( String.format( - "SSH authentication to '%1$s' failed%2$s", + "SSH authentication to '%1$s' failed. Please verify provided credentials. %2$s", this.getDisplayHost(), ( _keyPair == null ? - " make sure host is configured for password authentication" : - " make sure key is authorized at host" + "Make sure host is configured for password authentication" : + "Make sure key is authorized at host" ) ) ); -- To view, visit http://gerrit.ovirt.org/17283 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: If26f7e7aafeed6ec1dc1ba13f038415fe4f2e40b Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
