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
c8c3281f
Commit
c8c3281f
authored
Feb 06, 2020
by
Oran Agra
Browse files
add no_auth to COMMAND INFO
parent
44ac202f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/server.c
View file @
c8c3281f
...
@@ -3764,6 +3764,7 @@ void addReplyCommand(client *c, struct redisCommand *cmd) {
...
@@ -3764,6 +3764,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