diff options
Diffstat (limited to 'src/redis.c')
-rwxr-xr-x | src/redis.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/redis.c b/src/redis.c index e6731ba8b..04289db23 100755 --- a/src/redis.c +++ b/src/redis.c @@ -1655,8 +1655,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; |