Skip to content

Commit 3b1b1d1

Browse files
authored
MOD-7645: Return module commands in ACL CAT (#13489)
Currently, module commands are not returned for the `ACL CAT <category>` command, but skipped instead. Since now modules can add ACL categories they should no longer be skipped.
1 parent 60f22ca commit 3b1b1d1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/acl.c

-1
Original file line numberDiff line numberDiff line change
@@ -2762,7 +2762,6 @@ void aclCatWithFlags(client *c, dict *commands, uint64_t cflag, int *arraylen) {
27622762

27632763
while ((de = dictNext(di)) != NULL) {
27642764
struct redisCommand *cmd = dictGetVal(de);
2765-
if (cmd->flags & CMD_MODULE) continue;
27662765
if (cmd->acl_categories & cflag) {
27672766
addReplyBulkCBuffer(c, cmd->fullname, sdslen(cmd->fullname));
27682767
(*arraylen)++;

0 commit comments

Comments
 (0)