mirror of
https://github.com/fluencelabs/redis
synced 2025-06-22 05:21:33 +00:00
Streams: augment client.bpop with XREAD specific fields.
This commit is contained in:
@ -384,6 +384,10 @@ void unblockClientWaitingData(client *c) {
|
||||
decrRefCount(c->bpop.target);
|
||||
c->bpop.target = NULL;
|
||||
}
|
||||
if (c->bpop.xread_group) {
|
||||
decrRefCount(c->bpop.xread_group);
|
||||
c->bpop.xread_group = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
/* If the specified key has clients blocked waiting for list pushes, this
|
||||
|
Reference in New Issue
Block a user