From e38a9ec7e1fd70803850c0345bc1407190b52c96 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Wed, 28 Feb 2018 16:30:14 +0900 Subject: [PATCH] repmgrd: fix main monitoring loop for witness server Missing "break" was breaking it when following a new primary. --- repmgrd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/repmgrd.c b/repmgrd.c index 5cccc92a..dcfba444 100644 --- a/repmgrd.c +++ b/repmgrd.c @@ -440,6 +440,7 @@ start_monitoring(void) break; case WITNESS: monitor_streaming_witness(); + break; case BDR: monitor_bdr(); return;