diff options
author | Chad MILLER <chad@mysql.com> | 2009-04-02 11:29:28 -0400 |
---|---|---|
committer | Chad MILLER <chad@mysql.com> | 2009-04-02 11:29:28 -0400 |
commit | 668d988c71a7980b3f131feb51c24427cfd78082 (patch) | |
tree | 3fb4a88cbedace3f4dc3d98b89835ec3b3077932 /scripts/mysqld_multi.sh | |
parent | b70852c2f295a5f71710e27977f353d5aa2a4be9 (diff) | |
download | mariadb-git-668d988c71a7980b3f131feb51c24427cfd78082.tar.gz |
Bug#43876: mysqld_multi introduces --no-defaults which screws up my system
Bug#32136: mysqld_multi --defaults-file not respected while using \
--mysqld=mysqld_safe
Revert change that adds "--no-defaults" to mysqld_multi.
This closes Bug#43508 and re-opens Bug#32136.
Diffstat (limited to 'scripts/mysqld_multi.sh')
-rw-r--r-- | scripts/mysqld_multi.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/mysqld_multi.sh b/scripts/mysqld_multi.sh index 631e1e38cc7..3cb4665eb1c 100644 --- a/scripts/mysqld_multi.sh +++ b/scripts/mysqld_multi.sh @@ -293,12 +293,7 @@ sub start_mysqlds() @groups = &find_groups($groupids); for ($i = 0; defined($groups[$i]); $i++) { - # Defaults are made explicit parameters to server execution... @options = defaults_for_group($groups[$i]); - # ...so server MUST NOT try to read again from some config file, especially - # as the "right" file may be unknown to the server if we are using - # --defaults-file=... params in here. - unshift(@options,"--no-defaults"); $mysqld_found= 1; # The default $mysqld_found= 0 if (!length($mysqld)); |