Browse Source

Still drop clients from dead proxies even if we don't have their data any more

master
Con Kolivas 10 years ago
parent
commit
08d8644d1a
  1. 5
      src/stratifier.c

5
src/stratifier.c

@ -2156,9 +2156,8 @@ static void dead_proxy(sdata_t *sdata, const char *buf)
sscanf(buf, "deadproxy=%d:%d", &id, &subid);
proxy = existing_subproxy(sdata, id, subid);
if (!proxy)
return;
proxy->dead = true;
if (proxy)
proxy->dead = true;
LOGNOTICE("Stratifier dropping clients from proxy %d:%d", id, subid);
ck_rlock(&sdata->instance_lock);

Loading…
Cancel
Save