From e6857416427d8c6f508f22abf8141ca3948a819e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Wed, 11 Nov 2020 11:17:56 +0200 Subject: [PATCH] Configure SSL before starting MaxScale This makes sure that the servers are correctly configured before MaxScale sees them. --- system-test/maxtest/src/testconnections.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/system-test/maxtest/src/testconnections.cc b/system-test/maxtest/src/testconnections.cc index de00a7a45..59ab13b97 100644 --- a/system-test/maxtest/src/testconnections.cc +++ b/system-test/maxtest/src/testconnections.cc @@ -438,11 +438,6 @@ TestConnections::TestConnections(int argc, char* argv[]) } } - if (maxscale_init) - { - init_maxscales(); - } - if (backend_ssl) { tprintf("Configuring backends for ssl \n"); @@ -454,6 +449,11 @@ TestConnections::TestConnections(int argc, char* argv[]) } } + if (maxscale_init) + { + init_maxscales(); + } + if (mdbci_call_needed) { int ec;