From efd8f33201d5a5a5dab916f5d459e4b534bf947b Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Wed, 3 Feb 2016 21:35:19 +1100 Subject: [PATCH] Don't drop nodes or trusted remotes for lack of being authorised --- src/stratifier.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/stratifier.c b/src/stratifier.c index cd21449e..d46bc4c0 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -6732,6 +6732,9 @@ static void *statsupdate(void *arg) continue; } + if (client->node || client->remote) + continue; + /* Test for clients that haven't authed in over a minute * and drop them lazily */ if (!client->authorised) {