mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-26 08:36:30 +00:00
Fix a typo in a message
This commit is contained in:
2
HISTORY
2
HISTORY
@@ -36,7 +36,7 @@
|
|||||||
Add strnlen for compatibility with OS X (Greg)
|
Add strnlen for compatibility with OS X (Greg)
|
||||||
Improve performance of repl_status view (Jaime)
|
Improve performance of repl_status view (Jaime)
|
||||||
|
|
||||||
1.2.0 2012-04-28
|
1.2.0 2012-06-15
|
||||||
Test ssh connection before trying to rsync (Cédric)
|
Test ssh connection before trying to rsync (Cédric)
|
||||||
Add CLUSTER SHOW command (Carlo Ascani)
|
Add CLUSTER SHOW command (Carlo Ascani)
|
||||||
Add CLUSTER CLEANUP command (Jaime)
|
Add CLUSTER CLEANUP command (Jaime)
|
||||||
|
|||||||
2
repmgr.c
2
repmgr.c
@@ -1589,7 +1589,7 @@ test_ssh_connection(char *host, char *remote_user)
|
|||||||
log_debug(_("command is: %s"), script);
|
log_debug(_("command is: %s"), script);
|
||||||
r = system(script);
|
r = system(script);
|
||||||
if (r != 0)
|
if (r != 0)
|
||||||
log_info(_("Can not connect to the remote host (%s)\n"), host);
|
log_info(_("Cannot connect to the remote host (%s)\n"), host);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user