mirror of
https://github.com/fluencelabs/redis
synced 2025-06-27 16:01:32 +00:00
RDMF: use client instead of redisClient, like Disque.
This commit is contained in:
@ -127,7 +127,7 @@ void slowlogReset(void) {
|
||||
|
||||
/* The SLOWLOG command. Implements all the subcommands needed to handle the
|
||||
* Redis slow log. */
|
||||
void slowlogCommand(redisClient *c) {
|
||||
void slowlogCommand(client *c) {
|
||||
if (c->argc == 2 && !strcasecmp(c->argv[1]->ptr,"reset")) {
|
||||
slowlogReset();
|
||||
addReply(c,shared.ok);
|
||||
|
Reference in New Issue
Block a user