From ac8bb3259dd37038eb2754dcfa0404e167cdc26b Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sat, 21 Feb 2015 18:16:17 +1100 Subject: [PATCH] Send reconnect to clients immediately upon detecting they're sending to a dead proxy instead of flagging them --- src/stratifier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stratifier.c b/src/stratifier.c index 54a31a9f..b1e7b366 100644 --- a/src/stratifier.c +++ b/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); }