Skip to content

Commit e4a3a11

Browse files
janlindstromsysprg
authored andcommitted
MDEV-35344 : Galera test failure on galera_sync_wait_upto
Ignoring configured server_id should not be a warning because correct configuration is documented. Changed message to info level with more detailed message what was configured and what will be actually used. Signed-off-by: Julius Goryavsky <julius.goryavsky@mariadb.com>
1 parent eb891b6 commit e4a3a11

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

mysql-test/suite/galera/t/galera_sync_wait_upto.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#
44

55
--source include/galera_cluster.inc
6+
--source include/have_debug.inc
67
--source include/have_debug_sync.inc
78

89
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;

mysql-test/suite/galera/t/galera_var_ignore_apply_errors.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Test option wsrep_ignore_apply_errors
33
#
44

5+
--source include/have_perfschema.inc
56
--source include/galera_cluster.inc
67
--source include/force_restart.inc
78

sql/wsrep_mysqld.cc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -827,9 +827,8 @@ void wsrep_init_globals()
827827
else
828828
{
829829
if (wsrep_gtid_mode && wsrep_gtid_server.server_id != global_system_variables.server_id)
830-
{
831-
WSREP_WARN("Ignoring server id for non bootstrap node.");
832-
}
830+
WSREP_INFO("Ignoring server id %ld for non bootstrap node, using %ld.",
831+
global_system_variables.server_id, wsrep_gtid_server.server_id);
833832
}
834833
wsrep_init_schema();
835834
if (WSREP_ON)

0 commit comments

Comments
 (0)