Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
023cbc37
Commit
023cbc37
authored
Jan 10, 2013
by
antirez
Browse files
Comment in the call() function clarified a bit.
parent
b70b9c60
Changes
1
Show whitespace changes
Inline
Side-by-side
src/redis.c
View file @
023cbc37
...
...
@@ -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
;
...
...
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