Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
d7f18f50
Unverified
Commit
d7f18f50
authored
Feb 28, 2020
by
Salvatore Sanfilippo
Committed by
GitHub
Feb 28, 2020
Browse files
Merge pull request #6862 from oranagra/command_info_no_auth
add no_auth to COMMAND INFO
parents
f0d9a4e1
c8c3281f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/server.c
View file @
d7f18f50
...
@@ -3773,6 +3773,7 @@ void addReplyCommand(client *c, struct redisCommand *cmd) {
...
@@ -3773,6 +3773,7 @@ void addReplyCommand(client *c, struct redisCommand *cmd) {
flagcount
+=
addReplyCommandFlag
(
c
,
cmd
,
CMD_SKIP_SLOWLOG
,
"skip_slowlog"
);
flagcount
+=
addReplyCommandFlag
(
c
,
cmd
,
CMD_SKIP_SLOWLOG
,
"skip_slowlog"
);
flagcount
+=
addReplyCommandFlag
(
c
,
cmd
,
CMD_ASKING
,
"asking"
);
flagcount
+=
addReplyCommandFlag
(
c
,
cmd
,
CMD_ASKING
,
"asking"
);
flagcount
+=
addReplyCommandFlag
(
c
,
cmd
,
CMD_FAST
,
"fast"
);
flagcount
+=
addReplyCommandFlag
(
c
,
cmd
,
CMD_FAST
,
"fast"
);
flagcount
+=
addReplyCommandFlag
(
c
,
cmd
,
CMD_NO_AUTH
,
"no_auth"
);
if
((
cmd
->
getkeys_proc
&&
!
(
cmd
->
flags
&
CMD_MODULE
))
||
if
((
cmd
->
getkeys_proc
&&
!
(
cmd
->
flags
&
CMD_MODULE
))
||
cmd
->
flags
&
CMD_MODULE_GETKEYS
)
cmd
->
flags
&
CMD_MODULE_GETKEYS
)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment