diff --git a/HISTORY b/HISTORY index 1cf5fc8a..5ee081ce 100644 --- a/HISTORY +++ b/HISTORY @@ -5,6 +5,7 @@ repmgr: report unreachable nodes when running "repmgr cluster (matrix|crosscheck); GitHub #246 (Ian) repmgr: add configuration file parameter "repmgr_bindir"; GitHub #246 (Ian) + repmgr: fix "Missing replication slots" label in "node check"; GitHub #507 (Ian) repmgrd: fix parsing of -d/--daemonize option (Ian) 4.1.1 2018-09-05 diff --git a/doc/repmgr-node-check.sgml b/doc/repmgr-node-check.sgml index eed85577..95ad2941 100644 --- a/doc/repmgr-node-check.sgml +++ b/doc/repmgr-node-check.sgml @@ -30,7 +30,8 @@ Replication lag: OK (N/A - node is primary) WAL archiving: OK (0 pending files) Downstream servers: OK (2 of 2 downstream nodes attached) - Replication slots: OK (node has no replication slots) + Replication slots: OK (node has no replication slots) + Missing replication slots: OK (node has no missing replication slots) diff --git a/repmgr-action-node.c b/repmgr-action-node.c index b646fd15..db7f98c2 100644 --- a/repmgr-action-node.c +++ b/repmgr-action-node.c @@ -1784,7 +1784,7 @@ do_node_check_missing_slots(PGconn *conn, OutputMode mode, t_node_info *node_inf if (list_output != NULL) { check_status_list_set(list_output, - "Replication slots", + "Missing replication slots", status, details.data); }