diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-12-16 17:42:21 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-12-17 00:16:15 +0100 |
commit | b2b210b891697f999a9f85037462d54f78707e3e (patch) | |
tree | bffda29eb3ca7262a437feba658724c74338220d /sql/mysqld.cc | |
parent | b03b38dd6515e60689adb6c9ca57d9612618e2bf (diff) | |
download | mariadb-git-b2b210b891697f999a9f85037462d54f78707e3e.tar.gz |
MDEV-11543 Buildbot tests fail with warnings on server shutdown after rpl.rpl_row_mysqlbinlog
double the timeout for threads to die on shutdown
Diffstat (limited to 'sql/mysqld.cc')
-rw-r--r-- | sql/mysqld.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index 8eb92cafc03..ea4fa823d29 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -1462,7 +1462,7 @@ static void close_connections(void) end_slave(); /* Give threads time to die. */ - for (int i= 0; thread_count && i < 100; i++) + for (int i= 0; thread_count && i < 200; i++) my_sleep(20000); /* |