Merge branch '2.2' into develop
This commit is contained in:
@ -21,6 +21,7 @@ namespace maxscale
|
||||
{
|
||||
static bool start = true;
|
||||
static bool check_nodes = true;
|
||||
static bool manual_debug = false;
|
||||
static std::string required_repl_version;
|
||||
static std::string required_galera_version;
|
||||
}
|
||||
@ -158,6 +159,7 @@ TestConnections::TestConnections(int argc, char *argv[]):
|
||||
case 's':
|
||||
printf("Maxscale won't be started\n");
|
||||
maxscale::start = false;
|
||||
maxscale::manual_debug = true;
|
||||
break;
|
||||
|
||||
case 'i':
|
||||
@ -644,7 +646,7 @@ void TestConnections::init_maxscale(int m)
|
||||
{
|
||||
const char * template_name = get_template_name(test_name);
|
||||
|
||||
if (maxscale::start)
|
||||
if (!maxscale::manual_debug)
|
||||
{
|
||||
stop_maxscale(m);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user