]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: config: mark tune.fd.edge-triggered as experimental
authorWilly Tarreau <w@1wt.eu>
Sat, 8 May 2021 09:06:32 +0000 (11:06 +0200)
committerWilly Tarreau <w@1wt.eu>
Sat, 8 May 2021 09:06:32 +0000 (11:06 +0200)
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.

src/fd.c

index 3387653a582c60e16b902d1940c7340d06ebdddc..6362225ebf72f47313cee78097f9d94166841696 100644 (file)
--- 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 }
 }};