1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-10180 main.events_restart fails on valgrind builder: void THD::inc_thread_count(): Assertion `!abort_loop' failed.

remove an overly strong assert
This commit is contained in:
Sergei Golubchik
2016-06-08 17:36:16 +02:00
parent 9de6708390
commit dc08c3b15a

View File

@ -1917,7 +1917,6 @@ private:
void inc_thread_count(void)
{
thread_safe_increment32(const_cast<int32*>(&thread_count));
DBUG_ASSERT(!abort_loop);
}
public: