1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-09 22:24:09 +03:00

MDEV-10630 rpl.rpl_mdev6020 fails in buildbot with timeout

The issue was that when running with valgrind the wait for master_pos_Wait()
was not long enough.

This patch also fixes two other failures that could affect rpl_mdev6020:
- check_if_conflicting_replication_locks() didn't properly check domains
- 'did_mark_start_commit' was after signals to other threads was sent which could
  get the variable read too early.
This commit is contained in:
Monty
2016-08-22 10:16:00 +03:00
parent 5932fa7890
commit b51109693e
5 changed files with 29 additions and 10 deletions

View File

@@ -5899,7 +5899,7 @@ sub start_mysqltest ($) {
{
# We are running server under valgrind, which causes some replication
# test to be much slower, notable rpl_mdev6020. Increase timeout.
mtr_add_arg($args, "--wait-for-pos-timeout=1500");
mtr_add_arg($args, "--wait-for-pos-timeout=0");
}
if ( $opt_ssl )