In documentation, and in an error message, provide the right new keyword for
"idle-pool.shared", it is "full", not "auto".
protocols. This limit is large enough but not documented on purpose. The same
limit is applied on the first steps of the decoding for the same reason.
-tune.idle-pool.shared { auto | on | off }
+tune.idle-pool.shared { full | on | off }
Controls sharing idle connection pools between threads for a same server.
It can be enabled for all threads in a same thread group ('on'), enabled for
all threads ('full') or disabled ('off'). The default is to share them
global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
global.tune.tg_takeover = NO_THREADGROUP_TAKEOVER;
} else {
- memprintf(err, "'%s' expects 'auto', 'on' or 'off' but got '%s'.", args[0], args[1]);
+ memprintf(err, "'%s' expects 'full', 'on' or 'off' but got '%s'.", args[0], args[1]);
return -1;
}
return 0;