From f5fa6824db4810023342a86ad5f9007cdee1bb67 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 10 Jan 2013 11:19:40 +0100 Subject: [PATCH] Comment in the call() function clarified a bit. --- src/redis.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/redis.c b/src/redis.c index c77286d56..4408fbd0e 100644 --- a/src/redis.c +++ b/src/redis.c @@ -1566,8 +1566,9 @@ void call(redisClient *c, int flags) { if (flags != REDIS_PROPAGATE_NONE) propagate(c->cmd,c->db->id,c->argv,c->argc,flags); } - /* Commands such as LPUSH or BRPOPLPUSH may propagate an additional - * PUSH command. */ + + /* Handle the alsoPropagate() API to handle commands that want to propagate + * multiple separated commands. */ if (server.also_propagate.numops) { int j; redisOp *rop; -- GitLab