Browse Source

Send reconnect to clients immediately upon detecting they're sending to a dead proxy instead of flagging them

master
Con Kolivas 10 years ago
parent
commit
ac8bb3259d
  1. 2
      src/stratifier.c

2
src/stratifier.c

@ -2222,7 +2222,7 @@ static void reconnect_client_id(sdata_t *sdata, const int64_t client_id)
LOGINFO("reconnect_client_id failed to find client %"PRId64, client_id);
return;
}
lazy_reconnect_client(sdata, client);
reconnect_client(sdata, client);
dec_instance_ref(sdata, client);
}

Loading…
Cancel
Save