mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
Fix erroneous join function use
This commit is contained in:
parent
da214608b4
commit
601d948099
1 changed files with 1 additions and 2 deletions
|
@ -3518,7 +3518,6 @@ sub im_stop($) {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Kill leftovers (the order is important).
|
# Kill leftovers (the order is important).
|
||||||
|
|
||||||
unless ($clean_shutdown)
|
unless ($clean_shutdown)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -3535,7 +3534,7 @@ sub im_stop($) {
|
||||||
# will not stop them on shutdown. So, we should firstly try to end them
|
# will not stop them on shutdown. So, we should firstly try to end them
|
||||||
# legally.
|
# legally.
|
||||||
|
|
||||||
mtr_verbose("Killing guarded mysqld(s) " . join(@mysqld_pids));
|
mtr_verbose("Killing guarded mysqld(s) " . join(" ", @mysqld_pids));
|
||||||
mtr_kill_processes(\@mysqld_pids);
|
mtr_kill_processes(\@mysqld_pids);
|
||||||
|
|
||||||
# Complain in error log so that a warning will be shown.
|
# Complain in error log so that a warning will be shown.
|
||||||
|
|
Loading…
Reference in a new issue