From: Olivier Houchard Date: Thu, 6 Aug 2026 10:55:39 +0000 (+0200) Subject: MINOR: backend: Deprecate tune.takeover-other-tg-connections. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5cb77dc44e4a9521124078f1b6f2641e926ef6d9;p=thirdparty%2Fhaproxy.git MINOR: backend: Deprecate tune.takeover-other-tg-connections. Deprecate tune.takeover-other-tg-connections, as we're now supposed to use tune.idle-pool.shared. --- diff --git a/src/cfgparse-global.c b/src/cfgparse-global.c index d2eb94b7d..e16eadab8 100644 --- a/src/cfgparse-global.c +++ b/src/cfgparse-global.c @@ -1492,6 +1492,7 @@ static int cfg_parse_global_tune_opts(char **args, int section_type, } } else if (strcmp(args[0], "tune.takeover-other-tg-connections") == 0) { + ha_warning("parsing [%s:%d]: '%s' is deprecated and will be removed in version 3.7. Please use 'tune.idle-pool.shared\n", file, line, args[0]); if (*(args[1]) == 0) { memprintf(err, "'%s' expects 'none', 'restricted', or 'full'", args[0]); return -1;