Commit c2dc172a authored by bitterb's avatar bitterb
Browse files

Fix an error reply for CLIENT command

parent 21b3ff9b
...@@ -1228,7 +1228,7 @@ void clientCommand(redisClient *c) { ...@@ -1228,7 +1228,7 @@ void clientCommand(redisClient *c) {
else else
addReply(c,shared.nullbulk); addReply(c,shared.nullbulk);
} else { } else {
addReplyError(c, "Syntax error, try CLIENT (LIST | KILL ip:port)"); addReplyError(c, "Syntax error, try CLIENT (LIST | KILL ip:port | GETNAME | SETNAME connection-name)");
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment