From: Willy Tarreau Date: Sat, 8 May 2021 09:06:32 +0000 (+0200) Subject: MINOR: config: mark tune.fd.edge-triggered as experimental X-Git-Tag: v2.4-dev19~72 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9eec7e206e06aaa9157762cdb29102828cad6200;p=thirdparty%2Fhaproxy.git MINOR: config: mark tune.fd.edge-triggered as experimental This one is stated as experimental in the doc but could still be used by accidental copy-paste. Let's mark it with KWF_EXPERIMENTAL so that users have to opt-in to use it. --- diff --git a/src/fd.c b/src/fd.c index 3387653a58..6362225ebf 100644 --- a/src/fd.c +++ b/src/fd.c @@ -851,7 +851,7 @@ static int cfg_parse_tune_fd_edge_triggered(char **args, int section_type, struc /* config keyword parsers */ static struct cfg_kw_list cfg_kws = {ILH, { - { CFG_GLOBAL, "tune.fd.edge-triggered", cfg_parse_tune_fd_edge_triggered }, + { CFG_GLOBAL, "tune.fd.edge-triggered", cfg_parse_tune_fd_edge_triggered, KWF_EXPERIMENTAL }, { 0, NULL, NULL } }};