From d04dada094a1dbcac8262efb112792ef77a02c90 Mon Sep 17 00:00:00 2001 From: Greg Sabino Mullane Date: Mon, 16 Feb 2015 15:07:01 -0500 Subject: [PATCH] Have controller ignore any notices starting with "kid_", per a report from the field. Not sure how this is happening exactly, but cleaning up the listen/notify system is on the todo --- Bucardo.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Bucardo.pm b/Bucardo.pm index e1fe8d03a..79cb50a7b 100644 --- a/Bucardo.pm +++ b/Bucardo.pm @@ -2241,6 +2241,10 @@ sub start_controller { or (index($name, 'stopsync_') == 0); + + ## Ignore any messages sent to a kid + next NOTICE if 0 == index($name, 'kid_'); + ## Should not happen, but let's at least log it $self->glog("Warning: received unknown message $name from $npid!", LOG_TERSE); -- 2.39.5