From 6465b661e9ec4e654b1bd2a610128e61d7cc72f2 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 18 Apr 2006 00:30:55 -0400 Subject: [PATCH] BUG#19158 Fixing rpl_row_log_innodb test for pushbuild. mysql-test/extra/rpl_tests/rpl_log.test: Sleep to avoid race condition on pushbuild test machine --- mysql-test/extra/rpl_tests/rpl_log.test | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mysql-test/extra/rpl_tests/rpl_log.test b/mysql-test/extra/rpl_tests/rpl_log.test index 0c638281ecb..116bdd1028e 100644 --- a/mysql-test/extra/rpl_tests/rpl_log.test +++ b/mysql-test/extra/rpl_tests/rpl_log.test @@ -77,6 +77,11 @@ connection slave; # to go into the relay log (the master always sends a fake one when replication # starts). start slave; +# +# This is timing out in pushbuild and should be changed to use +# wait_slave_status.inc +# +sleep 2; sync_with_master; flush logs; stop slave;