summaryrefslogtreecommitdiff
path: root/redis.conf
diff options
context:
space:
mode:
authorOran Agra <oran@redislabs.com>2022-01-29 18:34:59 +0200
committerGitHub <noreply@github.com>2022-01-29 18:34:59 +0200
commit75a950cb9373e4bc6f2b0d926da0a094aaffbc8d (patch)
treeef49653c659c8e56a2411122c67fb752ae3fcff0 /redis.conf
parent93d951556be78e7a0b9fca40f0ebddb4e946ca27 (diff)
downloadredis-75a950cb9373e4bc6f2b0d926da0a094aaffbc8d.tar.gz
doc improvement about acl first-arg (#10199)
We recently removed capabilities from the first-arg feature of ACL and added a warning. but we didn't document it. ref: #10147 and redis/redis-doc#1761
Diffstat (limited to 'redis.conf')
-rw-r--r--redis.conf9
1 files changed, 5 insertions, 4 deletions
diff --git a/redis.conf b/redis.conf
index c1f95ae33..b1b775358 100644
--- a/redis.conf
+++ b/redis.conf
@@ -860,10 +860,11 @@ replica-priority 100
# The special category @all means all the commands, but currently
# present in the server, and that will be loaded in the future
# via modules.
-# +<command>|first-arg Allow a specific first argument of an otherwise
-# disabled command. Note that this form is not
-# allowed as negative like -SELECT|1, but
-# only additive starting with "+".
+# +<command>|first-arg Allow a specific first argument of an otherwise
+# disabled command. It is only supported on commands with
+# no sub-commands, and is not allowed as negative form
+# like -SELECT|1, only additive starting with "+". This
+# feature is deprecated and may be removed in the future.
# allcommands Alias for +@all. Note that it implies the ability to execute
# all the future commands loaded via the modules system.
# nocommands Alias for -@all.