diff options
author | Jan Lindström <jan.lindstrom@mariadb.com> | 2020-01-02 08:06:23 +0200 |
---|---|---|
committer | Jan Lindström <jan.lindstrom@mariadb.com> | 2020-01-02 08:06:23 +0200 |
commit | ef1e488be369b3d3c7eb26cfba1f44840221d502 (patch) | |
tree | 3ef4f83cda89115a0cba5674e8304f341a99a268 /plugin | |
parent | 4a012ce2f457e26a799115e8324967a945d4cba0 (diff) | |
download | mariadb-git-ef1e488be369b3d3c7eb26cfba1f44840221d502.tar.gz |
MDEV-13569: wsrep_info.plugin failed in buildbot with "no nodes coming from prim view
Modify configuration so that all nodes are part of galera cluster
i.e. wsrep_on=ON.
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/wsrep_info/mysql-test/wsrep_info/my.cnf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugin/wsrep_info/mysql-test/wsrep_info/my.cnf b/plugin/wsrep_info/mysql-test/wsrep_info/my.cnf index 52c7789e9f7..c9d47e40d4b 100644 --- a/plugin/wsrep_info/mysql-test/wsrep_info/my.cnf +++ b/plugin/wsrep_info/mysql-test/wsrep_info/my.cnf @@ -11,6 +11,7 @@ wsrep_provider=@ENV.WSREP_PROVIDER [mysqld.1] #galera_port=@OPT.port #sst_port=@OPT.port +wsrep-on=1 wsrep_provider_options='base_port=@mysqld.1.#galera_port' wsrep_sst_receive_address='127.0.0.1:@mysqld.1.#sst_port' wsrep_node_name=test-node-1 @@ -18,6 +19,7 @@ wsrep_node_name=test-node-1 [mysqld.2] #galera_port=@OPT.port #sst_port=@OPT.port +wsrep-on=1 wsrep_cluster_address='gcomm://127.0.0.1:@mysqld.1.#galera_port' wsrep_provider_options='base_port=@mysqld.2.#galera_port' wsrep_sst_receive_address='127.0.0.1:@mysqld.2.#sst_port' |