Commit 46810456 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

On Unix, correct default threadpool_idle_timeout to be 60 sec

parent c4394949
...@@ -2213,7 +2213,7 @@ static Sys_var_uint Sys_threadpool_idle_thread_timeout( ...@@ -2213,7 +2213,7 @@ static Sys_var_uint Sys_threadpool_idle_thread_timeout(
"Timeout in seconds for an idle thread in the thread pool." "Timeout in seconds for an idle thread in the thread pool."
"Worker thread will be shut down after timeout", "Worker thread will be shut down after timeout",
GLOBAL_VAR(threadpool_idle_timeout), CMD_LINE(REQUIRED_ARG), GLOBAL_VAR(threadpool_idle_timeout), CMD_LINE(REQUIRED_ARG),
VALID_RANGE(1, UINT_MAX/100), DEFAULT(60000), BLOCK_SIZE(1) VALID_RANGE(1, UINT_MAX), DEFAULT(60), BLOCK_SIZE(1)
); );
static Sys_var_uint Sys_threadpool_size( static Sys_var_uint Sys_threadpool_size(
"thread_pool_size", "thread_pool_size",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment