Comment in the call() function clarified a bit.

This commit is contained in:
antirez
2013-01-10 12:04:52 +01:00
parent b70b9c6027
commit 023cbc3787
+3 -2
View File
@@ -1528,8 +1528,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;