mirror of
https://github.com/fluencelabs/redis
synced 2025-06-15 02:01:21 +00:00
Clarify comment
This commit is contained in:
@ -826,7 +826,7 @@ int handleClientsWaitingListPush(redisClient *c, robj *key, robj *ele) {
|
|||||||
addReplyBulk(receiver,ele);
|
addReplyBulk(receiver,ele);
|
||||||
return 1;
|
return 1;
|
||||||
} else {
|
} else {
|
||||||
/* BRPOPLPUSH */
|
/* BRPOPLPUSH, note that receiver->db is always equal to c->db. */
|
||||||
dstobj = lookupKeyWrite(receiver->db,dstkey);
|
dstobj = lookupKeyWrite(receiver->db,dstkey);
|
||||||
if (dstobj && checkType(receiver,dstobj,REDIS_LIST)) {
|
if (dstobj && checkType(receiver,dstobj,REDIS_LIST)) {
|
||||||
decrRefCount(dstkey);
|
decrRefCount(dstkey);
|
||||||
|
Reference in New Issue
Block a user