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
4369cbce
Commit
4369cbce
authored
Oct 08, 2018
by
artix
Committed by
antirez
Nov 07, 2018
Browse files
Cluster Manager: fixed 'DELSLOT' subcommand typo.
parent
1ed821e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/redis-cli.c
View file @
4369cbce
...
...
@@ -3833,7 +3833,7 @@ static int clusterManagerFixOpenSlot(int slot) {
while
((
ln
=
listNext
(
&
li
))
!=
NULL
)
{
clusterManagerNode
*
n
=
ln
->
value
;
if
(
n
==
owner
)
continue
;
reply
=
CLUSTER_MANAGER_COMMAND
(
n
,
"CLUSTER DELSLOT %d"
,
slot
);
reply
=
CLUSTER_MANAGER_COMMAND
(
n
,
"CLUSTER DELSLOT
S
%d"
,
slot
);
success
=
clusterManagerCheckRedisReply
(
n
,
reply
,
NULL
);
if
(
reply
)
freeReplyObject
(
reply
);
if
(
!
success
)
goto
cleanup
;
...
...
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