mirror of
https://github.com/MariaDB/server.git
synced 2025-07-21 18:58:29 +02:00

The memory alloc-ed initially for wsrep_sst_auth to store the value specified in config was lost as the global variable was reset while in process of masking it and thus, could never be reclaimed on shutdown.
12 lines
289 B
Text
12 lines
289 B
Text
#
|
|
# MDEV-10492: Assertion failure on shutdown when wsrep_sst_auth set in config
|
|
#
|
|
SELECT @@global.wsrep_sst_auth;
|
|
@@global.wsrep_sst_auth
|
|
********
|
|
SET @@global.wsrep_sst_auth='foo:bar';
|
|
SELECT @@global.wsrep_sst_auth;
|
|
@@global.wsrep_sst_auth
|
|
********
|
|
disconnect node_2;
|
|
disconnect node_1;
|