From: Pieter Noordhuis Date: Mon, 31 Jan 2011 15:49:56 +0000 (+0100) Subject: Reply with single null bulk for unsuccesful BRPOPLPUSH X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/d5870d7ac3c4618bca373137559cb7c03c66e17d?ds=sidebyside Reply with single null bulk for unsuccesful BRPOPLPUSH --- diff --git a/src/t_list.c b/src/t_list.c index 1c658353..c9ec2e67 100644 --- a/src/t_list.c +++ b/src/t_list.c @@ -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]);