From f34cdc5607a022b25e78d4a87dd7487de172b145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Fri, 9 Mar 2018 13:58:54 +0200 Subject: [PATCH] Increase sleep in mxs812_2 The test appears to fail due to connection errors when it attempts to check whether MaxScale is still alive. To offset the chance of the backend server still refusing connections after the initial spike, the sleep before the check was increased. --- maxscale-system-test/mxs812_2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maxscale-system-test/mxs812_2.cpp b/maxscale-system-test/mxs812_2.cpp index a5b2309a5..c735b8b49 100644 --- a/maxscale-system-test/mxs812_2.cpp +++ b/maxscale-system-test/mxs812_2.cpp @@ -90,7 +90,7 @@ int main(int argc, char *argv[]) } Test->stop_timeout(); - sleep(5); + sleep(20); Test->check_maxscale_alive(0); Test->check_current_operations(0, 0);