mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge branch '10.10' into 10.11
This commit is contained in:
@@ -6336,7 +6336,7 @@ void handle_connections_sockets()
|
||||
}
|
||||
#endif // HAVE_POLL
|
||||
|
||||
for (uint retry=0; retry < MAX_ACCEPT_RETRY; retry++)
|
||||
for (uint retry=0; retry < MAX_ACCEPT_RETRY && !abort_loop; retry++)
|
||||
{
|
||||
size_socket length= sizeof(struct sockaddr_storage);
|
||||
MYSQL_SOCKET new_sock;
|
||||
@@ -8070,7 +8070,7 @@ mysqld_get_one_option(const struct my_option *opt, const char *argument,
|
||||
global_system_variables.log_warnings= atoi(argument);
|
||||
break;
|
||||
case 'T':
|
||||
test_flags= argument ? (uint) atoi(argument) : 0;
|
||||
test_flags= argument ? ((uint) atoi(argument) & ~TEST_BLOCKING) : 0;
|
||||
opt_endinfo=1;
|
||||
break;
|
||||
case OPT_THREAD_CONCURRENCY:
|
||||
|
Reference in New Issue
Block a user