Skip to content

Commit 65aa616

Browse files
author
Hemant Dangi
committed
Bug#32135376: DON'T WARN FOR EXPECTED EVENTS WHEN USING SOURCE_CONNECTION_AUTO_FAILOVER=1
Issue ===== When using CHANGE MASTER TO SOURCE_CONNECTION_AUTO_FAILOVER=1, and there is a failover, the server prints few warnings to the error log. Some of these below warnings sound more alarming than they actually are: 2020-11-06T08:57:48.079145Z 37 [Note] [MY-010563] [Repl] Slave I/O thread for channel '' killed while connecting to master 2020-11-06T08:57:49.086941Z 37 [Warning] [MY-010549] [Repl] The master's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was 14d730cf-200e-11eb-9d08-0010e0734796. Solution ======== 1. The error message "Replica I/O thread for channel '' killed while connecting to source" sounds as if something unexpected happened and the server does not know why. It will be replaced with below System-level message stating that the connection has timed out after trying configured number of times, and therefore the server is going to attempt an asynchronous replication connection failover to following server. "The connection has timed out after retries: %lu connecting to '%s@%s:%d'%s , and therefore the MySQL server is going to attempt an asynchronous replication connection failover, to '%s@%s:%d'" 2. The error message "The source's UUID has changed, although this should not happen unless you have changed it manually" sound more alarming. It is actually expected that the UUID changes here. It will be replaced with below message: "The source server has changed from \'%s:%d\' with server_uuid %s, to \'%s:%d\' with server_uuid %s." 3. The error message: "The master's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was %s." is replaced with below error messages: i. When source UUID, host and port has changed: "The Replica which was connected to source \'%s:%d\', is now connected to new source \'%s:%d\', but still has the same server_uuid %s." ii. When source UUID is changed, but host and port is not changed: "The server_uuid for source server \'%s:%d\' has changed from %s to %s. This should not happen unless you have changed it manually." 4. The error message: "Replica I/O thread%s: connected to master '%s@%s:%d',replication started in log '%s' at position %s" is replaced with below error messages: i. When GTID-based replicaton is used: "Replica receiver thread%s: connected to source \'%s@%s:%d\' with server_uuid=%s, server_id=%d. Starting GTID-based replication." ii. When replication is using file name and position: "Replica receiver thread%s: connected to source \'%s@%s:%d\' with server_uuid=%s, server_id=%d. Starting replication from file '%s', position '%s'." Change-Id: If8f9a47f294fd951b76a2f51cc955fd777c0cf1d
1 parent fa8218b commit 65aa616

File tree

71 files changed

+257
-245
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+257
-245
lines changed

mysql-test/include/mtr_warnings.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ INSERT INTO global_suppressions VALUES
190190
("You have an error in your SQL syntax"),
191191
("deprecated"),
192192
("equal MySQL server ids"),
193-
("error .*connecting to source"),
193+
("Error .*connecting to source"),
194194
("error reading log entry"),
195195
("lower_case_table_names is set"),
196196
("skip-name-resolve mode"),

mysql-test/suite/group_replication/include/gr_acf_membership_updates_2groups.inc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,6 @@ if (!$have_xcom_stack){
188188

189189
SET SESSION sql_log_bin = 0;
190190
call mtr.add_suppression("The source .* for channel 'ch1' has joined the group .*, and so added its entry into replication_asynchronous_connection_failover table.");
191-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually.");
192191
call mtr.add_suppression("The source .* for channel 'ch1' has left the group .*, and so removed its entry from replication_asynchronous_connection_failover table.");
193192
call mtr.add_suppression("The group .* for the channel .* has been removed, and so removed its entry from replication_asynchronous_connection_failover_managed and all the group members from replication_asynchronous_connection_failover table.");
194193
call mtr.add_suppression("The group .* for the channel .* has been added, and so added its entry in replication_asynchronous_connection_failover_managed and source to replication_asynchronous_connection_failover table.");

mysql-test/suite/group_replication/r/gr_acf_2groups_failover.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ include/assert.inc ['Last member from group B Server4 is one row in performance_
8181
SET SESSION sql_log_bin = 0;
8282
call mtr.add_suppression("The source .* for channel 'ch1' has joined the group .*, and so added its entry into replication_asynchronous_connection_failover table.");
8383
call mtr.add_suppression("The Monitor IO thread detected that the source .* does not belong to the group majority, thence the channel .* will try to connect to another source.");
84-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was.*");
8584
call mtr.add_suppression("The source .* for channel 'ch1' has left the group .*, and so removed its entry from replication_asynchronous_connection_failover table.");
8685
call mtr.add_suppression("The group .* for the channel .* has been removed, and so removed its entry from replication_asynchronous_connection_failover_managed and all the group members from replication_asynchronous_connection_failover table.");
8786
call mtr.add_suppression("The group .* for the channel .* has been added, and so added its entry in replication_asynchronous_connection_failover_managed and source to replication_asynchronous_connection_failover table.");

mysql-test/suite/group_replication/r/gr_acf_57_sources.result

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ include/assert.inc [Verify channel ch1 IO_THREAD is ON and connected to server1]
5353
############################################################
5454
# 5. Clean up.
5555
[connection server4]
56-
SET SESSION sql_log_bin = 0;
57-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually.");
58-
SET SESSION sql_log_bin = 1;
5956
include/stop_slave.inc [FOR CHANNEL 'ch1']
6057
include/rpl_reset_slave.inc
6158
SELECT asynchronous_connection_failover_delete_managed('ch1', 'GROUP');

mysql-test/suite/group_replication/r/gr_acf_connect_to_member_recovering.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ include/gr_wait_for_member_state.inc
6868

6969
SET SESSION sql_log_bin = 0;
7070
call mtr.add_suppression("The source .* for channel 'ch1_3' has joined the group .*, and so added its entry into replication_asynchronous_connection_failover table.");
71-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was.*");
7271
call mtr.add_suppression("The IO thread detected that the source .* does not belong to the group majority, thence the channel .* will try to connect to another source.");
7372
call mtr.add_suppression("The group .* for the channel .* has been removed, and so removed its entry from replication_asynchronous_connection_failover_managed and all the group members from replication_asynchronous_connection_failover table.");
7473
call mtr.add_suppression("The group .* for the channel .* has been added, and so added its entry in replication_asynchronous_connection_failover_managed and source to replication_asynchronous_connection_failover table.");

mysql-test/suite/group_replication/r/gr_acf_error_state_handling.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ include/start_group_replication.inc
3636
include/start_group_replication.inc
3737
[connection server4]
3838
SET SESSION sql_log_bin = 0;
39-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was.*");
4039
call mtr.add_suppression("The source.*for channel.*has joined the group.*and so added its entry into replication_asynchronous_connection_failover table");
4140
call mtr.add_suppression("The .* for channel 'ch1_4' has left the group .*, and so removed its entry from replication_asynchronous_connection_failover table.");
4241
call mtr.add_suppression("The Monitor IO thread detected that the source .* does not belong to the group majority, thence the channel .* will try to connect to another source.");

mysql-test/suite/group_replication/r/gr_acf_group_member_maintenance.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ include/assert.inc ['There are no rows in performance_schema.replication_asynchr
9696
include/assert.inc ['There are no rows in performance_schema.replication_asynchronous_connection_failover_managed']
9797
SET SESSION sql_log_bin = 0;
9898
call mtr.add_suppression("The source .* for channel 'ch1' has joined the group .*, and so added its entry into replication_asynchronous_connection_failover table.");
99-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually.*");
10099
call mtr.add_suppression("The Monitor IO thread detected that the source .* does not belong to the group majority, thence the channel .* will try to connect to another source.*");
101100
call mtr.add_suppression("The IO thread detected that the source .* does not belong to the group majority, thence the channel .* will try to connect to another source.");
102101
call mtr.add_suppression("The source .* for channel 'ch1' has left the group .*, and so removed its entry from replication_asynchronous_connection_failover table.");

mysql-test/suite/group_replication/r/gr_acf_join_unreachable_member.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ include/assert.inc ['There is no row in performance_schema.replication_asynchron
6161

6262
SET SESSION sql_log_bin = 0;
6363
call mtr.add_suppression("The source .* for channel 'ch2_4' has joined the group .*, and so added its entry into replication_asynchronous_connection_failover table.");
64-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was.*");
6564
call mtr.add_suppression("The Monitor IO thread detected that the source .* does not belong to the group majority, thence the channel .* will try to connect to another source.");
6665
call mtr.add_suppression("The source .* for channel 'ch2_4' has left the group .*, and so removed its entry from replication_asynchronous_connection_failover table.");
6766
call mtr.add_suppression("The group .* for the channel .* has been removed, and so removed its entry from replication_asynchronous_connection_failover_managed and all the group members from replication_asynchronous_connection_failover table.");

mysql-test/suite/group_replication/r/gr_acf_membership_updates_2groups.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ include/stop_group_replication.inc
7070
[connection server5]
7171
SET SESSION sql_log_bin = 0;
7272
call mtr.add_suppression("The source .* for channel 'ch1' has joined the group .*, and so added its entry into replication_asynchronous_connection_failover table.");
73-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually.");
7473
call mtr.add_suppression("The source .* for channel 'ch1' has left the group .*, and so removed its entry from replication_asynchronous_connection_failover table.");
7574
call mtr.add_suppression("The group .* for the channel .* has been removed, and so removed its entry from replication_asynchronous_connection_failover_managed and all the group members from replication_asynchronous_connection_failover table.");
7675
call mtr.add_suppression("The group .* for the channel .* has been added, and so added its entry in replication_asynchronous_connection_failover_managed and source to replication_asynchronous_connection_failover table.");

mysql-test/suite/group_replication/r/gr_acf_membership_updates_2groups_mysql.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ include/stop_group_replication.inc
7070
[connection server5]
7171
SET SESSION sql_log_bin = 0;
7272
call mtr.add_suppression("The source .* for channel 'ch1' has joined the group .*, and so added its entry into replication_asynchronous_connection_failover table.");
73-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually.");
7473
call mtr.add_suppression("The source .* for channel 'ch1' has left the group .*, and so removed its entry from replication_asynchronous_connection_failover table.");
7574
call mtr.add_suppression("The group .* for the channel .* has been removed, and so removed its entry from replication_asynchronous_connection_failover_managed and all the group members from replication_asynchronous_connection_failover table.");
7675
call mtr.add_suppression("The group .* for the channel .* has been added, and so added its entry in replication_asynchronous_connection_failover_managed and source to replication_asynchronous_connection_failover table.");

mysql-test/suite/group_replication/r/gr_acf_monitor_io_stopping.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ include/stop_group_replication.inc
6767
SET SESSION sql_log_bin = 0;
6868
call mtr.add_suppression("The IO thread detected that the source .* does not belong to the group majority, thence the channel 'ch2' will try to connect to another source.");
6969
call mtr.add_suppression("The Monitor IO thread detected that the source .* does not belong to the group majority, thence the channel 'ch2' will try to connect to another source.");
70-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was.*");
7170
SET SESSION sql_log_bin = 1;
7271
include/stop_slave.inc [FOR CHANNEL 'ch2']
7372
include/assert.inc [Verify replica_monitor thread is not running]

mysql-test/suite/group_replication/r/gr_acf_msr_2groups_failover.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ include/assert_grep.inc [ch2 did not reconnect to server3]
8989
SET SESSION sql_log_bin = 0;
9090
call mtr.add_suppression("The IO thread detected that the source .* does not belong to the group majority, thence the channel .* will try to connect to another source.");
9191
call mtr.add_suppression("The Monitor IO thread detected that the source .* does not belong to the group majority, thence the channel .* will try to connect to another source.");
92-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was.*");
9392
SET SESSION sql_log_bin = 1;
9493
include/stop_slave.inc [FOR CHANNEL 'ch1']
9594
include/rpl_reset_slave.inc

mysql-test/suite/group_replication/r/gr_acf_not_change_if_recovering.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ include/gr_wait_for_member_state.inc
6464

6565
SET SESSION sql_log_bin = 0;
6666
call mtr.add_suppression("The source .* for channel 'ch1_3' has joined the group .*, and so added its entry into replication_asynchronous_connection_failover table.");
67-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was.*");
6867
call mtr.add_suppression("The group .* for the channel .* has been removed, and so removed its entry from replication_asynchronous_connection_failover_managed and all the group members from replication_asynchronous_connection_failover table.");
6968
call mtr.add_suppression("The group .* for the channel .* has been added, and so added its entry in replication_asynchronous_connection_failover_managed and source to replication_asynchronous_connection_failover table.");
7069
SET SESSION sql_log_bin = 1;

mysql-test/suite/group_replication/r/gr_acf_ps_query_fail.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ asynchronous_connection_failover_delete_managed('ch1_3', 'GROUP_NAME')
8181
The UDF asynchronous_connection_failover_delete_managed() executed successfully.
8282
SET SESSION sql_log_bin = 0;
8383
call mtr.add_suppression("The source .* for channel 'ch1_3' has joined the group .*, and so added its entry into replication_asynchronous_connection_failover table.");
84-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually.*");
8584
call mtr.add_suppression("The source .* has lost quorum, and so channel 'ch1_3' connected to it will be stopped.*");
8685
call mtr.add_suppression("The source .* does not have quorum, and so connection will be killed for channel 'ch1_3'. Check for errors in its error log.");
8786
call mtr.add_suppression("The source (.*) does not belong to the group majority, .*");

mysql-test/suite/group_replication/r/gr_acf_receiver_add_delete_managed.result

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ Warnings:
33
Note #### Sending passwords in plain text without SSL/TLS is extremely insecure.
44
Note #### Storing MySQL user name or password information in the connection metadata repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START REPLICA; see the 'START REPLICA Syntax' in the MySQL Manual for more information.
55
[connection server1]
6-
SET SESSION sql_log_bin = 0;
7-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was.*");
8-
SET SESSION sql_log_bin = 1;
96
[connection server2]
107
[connection server3]
118
[connection server4]

mysql-test/suite/group_replication/r/gr_acf_receiver_on_spm.result

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ Warnings:
33
Note #### Sending passwords in plain text without SSL/TLS is extremely insecure.
44
Note #### Storing MySQL user name or password information in the connection metadata repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START REPLICA; see the 'START REPLICA Syntax' in the MySQL Manual for more information.
55
[connection server1]
6-
SET SESSION sql_log_bin = 0;
7-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was.*");
8-
SET SESSION sql_log_bin = 1;
96
[connection server2]
107
SET SESSION sql_log_bin = 0;
118
call mtr.add_suppression("Can't start replica IO THREAD of channel 'ch1' when group replication is running with single-primary mode on a secondary member.");
@@ -14,7 +11,6 @@ call mtr.add_suppression("Run function 'thread_start' in plugin 'group_replicati
1411
call mtr.add_suppression("Run function 'applier_start' in plugin 'group_replication' failed");
1512
call mtr.add_suppression("Failed to run 'thread_start' hook");
1613
call mtr.add_suppression("Failed to run 'applier_start' hook");
17-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was.*");
1814
SET SESSION sql_log_bin = 1;
1915

2016
# 1. Create a replication channel to replicate from server4 to

mysql-test/suite/group_replication/r/gr_acf_receiver_primary_change.result

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,10 @@ Warnings:
33
Note #### Sending passwords in plain text without SSL/TLS is extremely insecure.
44
Note #### Storing MySQL user name or password information in the connection metadata repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START REPLICA; see the 'START REPLICA Syntax' in the MySQL Manual for more information.
55
[connection server1]
6-
SET SESSION sql_log_bin = 0;
7-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was.*");
8-
SET SESSION sql_log_bin = 1;
9-
[connection server2]
10-
SET SESSION sql_log_bin = 0;
11-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was.*");
12-
SET SESSION sql_log_bin = 1;
136

147
# 1. Create a replication channel to replicate from server4 to
158
# to server1 on both server1 and 2.
169

17-
[connection server1]
1810
CHANGE REPLICATION SOURCE TO SOURCE_HOST='127.0.0.1', SOURCE_USER='root', SOURCE_AUTO_POSITION=1, SOURCE_PORT=SERVER_4_PORT, SOURCE_CONNECT_RETRY=1, SOURCE_RETRY_COUNT=1, SOURCE_CONNECTION_AUTO_FAILOVER=1 FOR CHANNEL 'ch1';
1911
Warnings:
2012
Note 1759 Sending passwords in plain text without SSL/TLS is extremely insecure.

mysql-test/suite/group_replication/r/gr_acf_role_changes_weight.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ include/start_and_bootstrap_group_replication.inc
1212
include/start_group_replication.inc
1313
[connection server3]
1414
SET SESSION sql_log_bin = 0;
15-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was.*");
1615
call mtr.add_suppression("The source.*for channel.*has joined the group.*and so added its entry into replication_asynchronous_connection_failover table");
1716
call mtr.add_suppression("The group .* for the channel .* has been removed, and so removed its entry from replication_asynchronous_connection_failover_managed and all the group members from replication_asynchronous_connection_failover table.");
1817
call mtr.add_suppression("The group .* for the channel .* has been added, and so added its entry in replication_asynchronous_connection_failover_managed and source to replication_asynchronous_connection_failover table.");

mysql-test/suite/group_replication/r/gr_acf_sender_change_group.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ include/assert.inc ['There one row in performance_schema.replication_asynchronou
6464
SET SESSION sql_log_bin = 0;
6565
call mtr.add_suppression("The source .* for channel 'ch1' has joined the group .*, and so added its entry into replication_asynchronous_connection_failover table.");
6666
call mtr.add_suppression("The Monitor IO thread detected that the source .* does not belong to the group majority, thence the channel .* will try to connect to another source.");
67-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was.*");
6867
call mtr.add_suppression("The source .* for channel 'ch1' has left the group .*, and so removed its entry from replication_asynchronous_connection_failover table.");
6968
call mtr.add_suppression("The group .* for the channel .* has been removed, and so removed its entry from replication_asynchronous_connection_failover_managed and all the group members from replication_asynchronous_connection_failover table.");
7069
call mtr.add_suppression("The group .* for the channel .* has been added, and so added its entry in replication_asynchronous_connection_failover_managed and source to replication_asynchronous_connection_failover table.");

mysql-test/suite/group_replication/r/gr_acf_sender_no_majority.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ include/assert.inc ['There are no rows in performance_schema.replication_asynchr
9595
include/assert.inc ['There are no rows in performance_schema.replication_asynchronous_connection_failover_managed']
9696
SET SESSION sql_log_bin = 0;
9797
call mtr.add_suppression("The source .* for channel 'ch1' has joined the group .*, and so added its entry into replication_asynchronous_connection_failover table.");
98-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually.*");
9998
call mtr.add_suppression("The Monitor IO thread detected that the source .* does not belong to the group majority, thence the channel .* will try to connect to another source.*");
10099
call mtr.add_suppression("The IO thread detected that the source .* does not belong to the group majority, thence the channel .* will try to connect to another source.");
101100
call mtr.add_suppression("The source .* for channel 'ch1' has left the group .*, and so removed its entry from replication_asynchronous_connection_failover table.");

mysql-test/suite/group_replication/r/gr_acf_sender_no_majority_2groups.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ include/assert.inc ['There are no rows in performance_schema.replication_asynchr
8282
include/assert.inc ['There are no rows in performance_schema.replication_asynchronous_connection_failover_managed']
8383
SET SESSION sql_log_bin = 0;
8484
call mtr.add_suppression("The source .* for channel 'ch1' has joined the group .*, and so added its entry into replication_asynchronous_connection_failover table.");
85-
call mtr.add_suppression("The source's UUID has changed, although this should not happen unless you have changed it manually.*");
8685
call mtr.add_suppression("The IO thread detected that the source .* does not belong to the group majority, thence the channel .* will try to connect to another source.");
8786
call mtr.add_suppression("The Monitor IO thread detected that the source .* does not belong to the group majority, thence the channel .* will try to connect to another source.*");
8887
call mtr.add_suppression("The Monitor IO thread failed to connect to the source .* for channel 'ch1', thence it will try to connect to another source.");

0 commit comments

Comments
 (0)