mirror of https://mirror.osredm.com/root/redis.git
Make CONFIG GET OOM-score-adj-values case insensitive. (#9114)
This commit is contained in:
parent
4c52aa9faa
commit
1fabb89a41
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue