From 250c6291dfbe6f6ca5367d48362152ef9eff8cae Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Wed, 14 Oct 2020 17:51:57 +0900 Subject: [PATCH] node rejoin: fix Pg13+ "standby.signal" handling with pg_rewind --- repmgr-action-node.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repmgr-action-node.c b/repmgr-action-node.c index 935bd6e0..5fef6cfe 100644 --- a/repmgr-action-node.c +++ b/repmgr-action-node.c @@ -2495,7 +2495,7 @@ do_node_rejoin(void) PGPing status; bool is_shutdown = true; int server_version_num = UNKNOWN_SERVER_VERSION_NUM; - bool hide_standby_signal = true; + bool hide_standby_signal = false; PQExpBufferData command; PQExpBufferData command_output;