From d93907d6a8e47de7281341ccb1e359b5c5eaa5ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Mon, 12 Feb 2018 12:35:34 +0200 Subject: [PATCH] Increase timeouts for slave synchronization It is possible that replication is severely lagging when slaves are being synchronized. This means that a timeout of 120 seconds might not be enough. --- maxscale-system-test/test_binlog_fnc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maxscale-system-test/test_binlog_fnc.cpp b/maxscale-system-test/test_binlog_fnc.cpp index c3a76acc0..566aaa806 100644 --- a/maxscale-system-test/test_binlog_fnc.cpp +++ b/maxscale-system-test/test_binlog_fnc.cpp @@ -134,7 +134,7 @@ void test_binlog(TestConnections* Test) Test->add_result(insert_into_t1(Test->repl->nodes[0], 4), "Data inserting to t1 failed"); Test->stop_timeout(); Test->tprintf("Waiting for replication to catch up"); - Test->set_timeout(120); + Test->set_timeout(500); Test->repl->sync_slaves(); for (i = 0; i < Test->repl->N; i++)