1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

MDEV#4138: Galera: mysqld_safe doesn't pass on wsrep_provider to mysqld

In mysqld_safe script, during the processing of command line
options, the supplied wsrep_provider option was not getting
appended to the set of mysqld options. Hence, wsrep plugin
would never receive the path for wsrep provider.

Fixed by adding logic to append the wsrep_provider option
to the set of mysqld options.
This commit is contained in:
Nirbhay Choubey
2013-11-30 07:46:53 -05:00
parent e4f5e49cd6
commit 730466b328

View File

@@ -328,6 +328,7 @@ parse_arguments() {
then
wsrep_restart=1
fi
append_arg_to_args "$arg"
;;
--help) usage ;;