From 5d3c0d61633ae935eade8c4ec3b41708f0e075b8 Mon Sep 17 00:00:00 2001 From: Martin Date: Fri, 23 Sep 2016 09:15:09 -0300 Subject: [PATCH] Make it clear in the error message that the type of connection that failed was an SSH connection, not a libpq one. --- repmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repmgr.c b/repmgr.c index 83aa6725..51970e34 100644 --- a/repmgr.c +++ b/repmgr.c @@ -5618,7 +5618,7 @@ test_ssh_connection(char *host, char *remote_user) } if (r != 0) - log_info(_("unable to connect to remote host (%s)\n"), host); + log_info(_("unable to connect to remote host (%s) via SSH.\n"), host); return r; }