Skip to content

Commit

Permalink
BUG/MINOR: cfgparse-global: remove tune.fast-forward from common_kw_list
Browse files Browse the repository at this point in the history
Remove tune.fast-forward from common_kw_list. It was replaced by
'tune.disable-fast-forward' and it's no longer present in "if..else if.."
parser from cfg_parse_global(). Otherwise, it may be shown as the best-match
keyword for some tune options, which is now wrong.

Should be backported in versions 2.9 and 3.0.
  • Loading branch information
vkssv authored and wlallemand committed Aug 20, 2024
1 parent 731ef86 commit 2e6e159
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/cfgparse-global.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ int cluster_secret_isset;
static const char *common_kw_list[] = {
"global", "busy-polling", "set-dumpable",
"insecure-fork-wanted", "insecure-setuid-wanted", "nosplice",
"nogetaddrinfo", "noreuseport",
"tune.fast-forward", "uid", "gid",
"nogetaddrinfo", "noreuseport", "uid", "gid",
"external-check", "user", "group", "maxconn",
"ssl-server-verify", "maxconnrate", "maxsessrate", "maxsslrate",
"maxcomprate", "maxpipes", "maxzlibmem", "maxcompcpuusage", "ulimit-n",
Expand Down

0 comments on commit 2e6e159

Please sign in to comment.