Commit e42572f5 authored by unknown's avatar unknown
Browse files

mtr_process.pl:

  Append to some of the log files, not overwrite


mysql-test/lib/mtr_process.pl:
  Append to some of the log files, not overwrite
parent 5e26e3f4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -680,7 +680,8 @@ sub mtr_mysqladmin_shutdown {
    mtr_add_arg($args, "shutdown");
    # We don't wait for termination of mysqladmin
    my $pid= mtr_spawn($::exe_mysqladmin, $args,
                       "", $::path_manager_log, $::path_manager_log, "");
                       "", $::path_manager_log, $::path_manager_log, "",
                       { append_log_file => 1 });
    $mysql_admin_pids{$pid}= 1;
  }