Bug#24354 option "--extern" of mysql-test-run.pl does not work anymore

 - Dont require restart when using extern and there is no record of
   master being started(pid is not known) 
parent dd773b1a
...@@ -3868,8 +3868,16 @@ sub run_testcase_need_master_restart($) ...@@ -3868,8 +3868,16 @@ sub run_testcase_need_master_restart($)
} }
elsif( ! $master->[0]->{'pid'} ) elsif( ! $master->[0]->{'pid'} )
{ {
$do_restart= 1; if ( $opt_extern )
mtr_verbose("Restart master: master is not started"); {
$do_restart= 0;
mtr_verbose("No restart: using extern master");
}
else
{
$do_restart= 1;
mtr_verbose("Restart master: master is not started");
}
} }
return $do_restart; return $do_restart;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment