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
1fabb89a
Unverified
Commit
1fabb89a
authored
Jun 20, 2021
by
Binbin
Committed by
GitHub
Jun 20, 2021
Browse files
Make CONFIG GET OOM-score-adj-values case insensitive. (#9114)
parent
4c52aa9f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/config.c
View file @
1fabb89a
...
@@ -1072,7 +1072,7 @@ void configGetCommand(client *c) {
...
@@ -1072,7 +1072,7 @@ void configGetCommand(client *c) {
matches
++
;
matches
++
;
}
}
if
(
stringmatch
(
pattern
,
"oom-score-adj-values"
,
0
))
{
if
(
stringmatch
(
pattern
,
"oom-score-adj-values"
,
1
))
{
sds
buf
=
sdsempty
();
sds
buf
=
sdsempty
();
int
j
;
int
j
;
...
...
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