From 3f0ef7481ebe67c6086963a453c6d951dbd34d93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Tue, 2 Jan 2018 10:10:25 +0200 Subject: [PATCH] Fix test build failure The ssh_node_f function does not exist in 2.1. --- maxscale-system-test/mariadb_nodes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maxscale-system-test/mariadb_nodes.cpp b/maxscale-system-test/mariadb_nodes.cpp index 90c75aca2..8e43d151b 100644 --- a/maxscale-system-test/mariadb_nodes.cpp +++ b/maxscale-system-test/mariadb_nodes.cpp @@ -916,7 +916,7 @@ bool Mariadb_nodes::revert_nodes_snapshot() { rval = false; } - ssh_node_f(i, true, "pkill -9 mysqld"); + ssh_node(i, true, "pkill -9 mysqld"); } return rval; }