From f4cd2c62b6abb2cf4a27a262caea84a6834ab08c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Thu, 7 Sep 2017 18:38:08 +0300 Subject: [PATCH] Backport mxs1110_16mb fixes to 2.1 Backported changes to mxs1110_16mb from develop into 2.1. --- maxscale-system-test/mxs1110_16mb.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/maxscale-system-test/mxs1110_16mb.cpp b/maxscale-system-test/mxs1110_16mb.cpp index 7788b7116..5497373af 100644 --- a/maxscale-system-test/mxs1110_16mb.cpp +++ b/maxscale-system-test/mxs1110_16mb.cpp @@ -13,6 +13,7 @@ int main(int argc, char *argv[]) { TestConnections::skip_maxscale_start(true); TestConnections * Test = new TestConnections(argc, argv); + Test->stop_maxscale(); Test->set_timeout(60); int chunk_size = 2500000; int chunk_num = 5; @@ -26,6 +27,7 @@ int main(int argc, char *argv[]) Test->start_maxscale(); Test->repl->execute_query_all_nodes( (char *) "set global max_allowed_packet=100000000"); + Test->galera->execute_query_all_nodes( (char *) "set global max_allowed_packet=100000000"); Test->connect_maxscale(); Test->repl->connect(); @@ -34,6 +36,7 @@ int main(int argc, char *argv[]) Test->repl->close_connections(); Test->close_maxscale_connections(); + Test->repl->sync_slaves(); Test->connect_maxscale(); Test->tprintf("Checking data via RWSplit\n"); check_longblob_data(Test, Test->conn_rwsplit, chunk_size, chunk_num, 2);