mirror of
https://github.com/fluencelabs/redis
synced 2025-06-15 18:21:21 +00:00
Remove client from list of unblocked clients when it is free'd
This commit is contained in:
@ -688,6 +688,7 @@ void beforeSleep(struct aeEventLoop *eventLoop) {
|
||||
redisAssert(ln != NULL);
|
||||
c = ln->value;
|
||||
listDelNode(server.unblocked_clients,ln);
|
||||
c->flags &= ~REDIS_UNBLOCKED;
|
||||
|
||||
/* Process remaining data in the input buffer. */
|
||||
if (c->querybuf && sdslen(c->querybuf) > 0)
|
||||
|
Reference in New Issue
Block a user