|
The problem has not happened in buildbot on 10.0 since July 20, 2015 and on 10.1 since August 2015. Before that, it was happening ~2-4 times a month, so I think we can safely assume it disappeared from the trees. It's possible it was somehow related to (and fixed with) MDEV-8301, the timing fits.
|
|
For this latter failure I have added log dump in case of failure and it appears to be caused by earlier testcase disconnects completing asynchronously during this logging-enabled window. The testcase tries to wait for some of the disconnects to complete by waiting for the threads to disappear from processlist, but 1) this is not universal for all connections; 2) the threads disappear from processlist early in the disconnect process.
I have changed the testcase to use wait_until_count_sessions.inc (Threads_connected decrement happens very late in the disconnect): https://github.com/percona/percona-server/pull/1679. The diff contains semi-related changes of reverting that previously added dump
|