Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
8a70007f
Commit
8a70007f
authored
Jan 10, 2013
by
antirez
Browse files
Comment in the call() function clarified a bit.
parent
e2e36cf1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/redis.c
View file @
8a70007f
...
@@ -1529,8 +1529,9 @@ void call(redisClient *c, int flags) {
...
@@ -1529,8 +1529,9 @@ void call(redisClient *c, int flags) {
if (flags != REDIS_PROPAGATE_NONE)
if (flags != REDIS_PROPAGATE_NONE)
propagate(c->cmd,c->db->id,c->argv,c->argc,flags);
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) {
if (server.also_propagate.numops) {
int j;
int j;
redisOp *rop;
redisOp *rop;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment