mirror of
https://github.com/fluencelabs/redis
synced 2025-07-31 16:31:58 +00:00
ACL: fix setting of FAST flag.
This commit is contained in:
@@ -2914,10 +2914,10 @@ int populateCommandTableParseFlags(struct redisCommand *c, char *strflags) {
|
||||
return C_ERR;
|
||||
}
|
||||
}
|
||||
|
||||
/* If it's not @fast is @slow in this binary world. */
|
||||
if (!(c->flags & CMD_CATEGORY_FAST)) c->flags |= CMD_CATEGORY_SLOW;
|
||||
}
|
||||
/* If it's not @fast is @slow in this binary world. */
|
||||
if (!(c->flags & CMD_CATEGORY_FAST)) c->flags |= CMD_CATEGORY_SLOW;
|
||||
|
||||
sdsfreesplitres(argv,argc);
|
||||
return C_OK;
|
||||
}
|
||||
|
Reference in New Issue
Block a user