repmgrd: fix main monitoring loop for witness server

Missing "break" was breaking it when following a new primary.
This commit is contained in:
Ian Barwick
2018-02-28 16:30:14 +09:00
parent 5e8b41e221
commit ae4d0f2622

View File

@@ -442,6 +442,7 @@ start_monitoring(void)
break;
case WITNESS:
monitor_streaming_witness();
break;
case BDR:
monitor_bdr();
return;