mirror of
https://github.com/MariaDB/server.git
synced 2025-12-06 05:42:06 +03:00
15 lines
327 B
Plaintext
15 lines
327 B
Plaintext
connection node_2;
|
|
connection node_1;
|
|
#
|
|
# 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;
|