Browse Source

MDEV-11543 Buildbot tests fail with warnings on server shutdown after rpl.rpl_row_mysqlbinlog

double the timeout for threads to die on shutdown
pull/328/head
Sergei Golubchik 9 years ago
parent
commit
b2b210b891
  1. 2
      sql/mysqld.cc

2
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);
/*

Loading…
Cancel
Save