Consider sub by pattern when clear subscribed flag

This commit is contained in:
Hyungjin Kim 2017-01-30 20:00:04 +09:00
parent 073dc84399
commit be76c56b51
1 changed files with 3 additions and 1 deletions

View File

@ -407,7 +407,9 @@ static int __redisGetSubscribeCallback(redisAsyncContext *ac, redisReply *reply,
assert(reply->element[2]->type == REDIS_REPLY_INTEGER);
/* Unset subscribed flag only when no pipelined pending subscribe. */
if (reply->element[2]->integer == 0 && dictSize(callbacks) == 0)
if (reply->element[2]->integer == 0
&& dictSize(ac->sub.channels) == 0
&& dictSize(ac->sub.patterns) == 0)
c->flags &= ~REDIS_SUBSCRIBED;
}
}