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
2cdf4cc6
"vscode:/vscode.git/clone" did not exist on "bc291141b13a802ac0190ba06946ef2fa9add768"
Commit
2cdf4cc6
authored
Jul 18, 2017
by
Leon Chen
Committed by
GitHub
Jul 18, 2017
Browse files
fix mismatch argument
parent
b80e4670
Changes
1
Show whitespace changes
Inline
Side-by-side
src/cluster.c
View file @
2cdf4cc6
...
@@ -4194,7 +4194,7 @@ void clusterCommand(client *c) {
...
@@ -4194,7 +4194,7 @@ void clusterCommand(client *c) {
}
}
if ((n = clusterLookupNode(c->argv[4]->ptr)) == NULL) {
if ((n = clusterLookupNode(c->argv[4]->ptr)) == NULL) {
addReplyErrorFormat(c,"I don't know about node %s",
addReplyErrorFormat(c,"I don't know about node %s",
(
char
*
)
c
->
argv
[
3
]
->
ptr
);
(char*)c->argv[
4
]->ptr);
return;
return;
}
}
server.cluster->importing_slots_from[slot] = n;
server.cluster->importing_slots_from[slot] = n;
...
...
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