From 6645281aeb66a863f7632bf61a2a92c66fbd4c10 Mon Sep 17 00:00:00 2001 From: Timofey Turenko Date: Fri, 29 Dec 2017 12:12:20 +0200 Subject: [PATCH] add killing mysqld process after snapshot revert --- maxscale-system-test/mariadb_nodes.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/maxscale-system-test/mariadb_nodes.cpp b/maxscale-system-test/mariadb_nodes.cpp index 9ee264d14..90c75aca2 100644 --- a/maxscale-system-test/mariadb_nodes.cpp +++ b/maxscale-system-test/mariadb_nodes.cpp @@ -916,6 +916,7 @@ bool Mariadb_nodes::revert_nodes_snapshot() { rval = false; } + ssh_node_f(i, true, "pkill -9 mysqld"); } return rval; }