From 46c37556789c675c772bfb2fc7502daee48877a2 Mon Sep 17 00:00:00 2001 From: Timofey Turenko Date: Mon, 30 Nov 2020 16:17:33 +0200 Subject: [PATCH] add server restart to prepare_servers() --- system-test/maxtest/src/mariadb_nodes.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-test/maxtest/src/mariadb_nodes.cc b/system-test/maxtest/src/mariadb_nodes.cc index 2590f6b1a..afcd79c92 100644 --- a/system-test/maxtest/src/mariadb_nodes.cc +++ b/system-test/maxtest/src/mariadb_nodes.cc @@ -1452,7 +1452,7 @@ int Mariadb_nodes::prepare_server(int i) ssh_node(i, "mysql_install_db; sudo chown -R mysql:mysql /var/lib/mysql", true); } } - + ssh_node(i, "service mysql restart", true); free(version); return ec; }