Merge pull request #3255 from oranagra/error_string

CLIENT error message was out of date
This commit is contained in:
Salvatore Sanfilippo 2016-06-16 12:59:05 +02:00 committed by GitHub
commit 8272ceadaa

View File

@ -1605,7 +1605,7 @@ void clientCommand(client *c) {
pauseClients(duration); pauseClients(duration);
addReply(c,shared.ok); addReply(c,shared.ok);
} else { } else {
addReplyError(c, "Syntax error, try CLIENT (LIST | KILL ip:port | GETNAME | SETNAME connection-name)"); addReplyError(c, "Syntax error, try CLIENT (LIST | KILL | GETNAME | SETNAME | PAUSE | REPLY)");
} }
} }