From 2ab4a4fd208c06ac948542096353e9e1bd2075d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Tue, 6 Jun 2017 23:40:54 +0300 Subject: [PATCH] Stop timeout before fixing replication The timeout is hit very often if the cluster fixing takes some time. This causes false positives so the timeout should be stopped before attempting to fix the cluster. --- maxscale-system-test/avro.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/maxscale-system-test/avro.cpp b/maxscale-system-test/avro.cpp index fa80f5019..40f268e58 100644 --- a/maxscale-system-test/avro.cpp +++ b/maxscale-system-test/avro.cpp @@ -87,6 +87,7 @@ int main(int argc, char *argv[]) } execute_query(test.repl->nodes[0], "DROP TABLE test.t1;RESET MASTER"); + test.stop_timeout(); test.repl->fix_replication(); return test.global_result;