Browse Source

Don't drop nodes or trusted remotes for lack of being authorised

master
Con Kolivas 9 years ago
parent
commit
efd8f33201
  1. 3
      src/stratifier.c

3
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) {

Loading…
Cancel
Save