Reply with single null bulk for unsuccesful BRPOPLPUSH

This commit is contained in:
Pieter Noordhuis
2011-01-31 16:50:00 +01:00
parent 71791e7a8e
commit 669f302e16
+1 -1
View File
@@ -941,7 +941,7 @@ void brpoplpushCommand(redisClient *c) {
/* Blocking against an empty list in a multi state
* returns immediately. */
addReply(c, shared.nullmultibulk);
addReply(c, shared.nullbulk);
} else {
/* The list is empty and the client blocks. */
blockForKeys(c, c->argv + 1, 1, timeout, c->argv[2]);