Skip to content

Commit e7bb12f

Browse files
committed
Fixed check-mysqld_1.reject warning from mariadb-dump_slave test
The failure was: -Master_SSL_Verify_Server_Cert No +Master_SSL_Verify_Server_Cert Yes
1 parent 1125f59 commit e7bb12f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

mysql-test/suite/multi_source/mariadb-dump_slave.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ connect active_master, 127.0.0.1, root, , , $SERVER_MYPORT_2;
22
connect inactive_master, 127.0.0.1, root, , , $SERVER_MYPORT_3;
33
connect slave, 127.0.0.1, root, , , $SERVER_MYPORT_1;
44
CHANGE MASTER TO
5-
master_host='127.0.0.1', master_port=MYPORT_2, master_user='root';
5+
master_host='127.0.0.1', master_port=MYPORT_2, master_user='root', master_ssl_verify_server_cert=0;
66
START SLAVE SQL_THREAD;
77
CHANGE MASTER 'inactive' TO
88
master_host='127.0.0.1', master_port=MYPORT_3;

mysql-test/suite/multi_source/mariadb-dump_slave.test

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
--replace_result $SERVER_MYPORT_2 MYPORT_2
1414
eval CHANGE MASTER TO
15-
master_host='127.0.0.1', master_port=$SERVER_MYPORT_2, master_user='root';
15+
master_host='127.0.0.1', master_port=$SERVER_MYPORT_2, master_user='root', master_ssl_verify_server_cert=0;
1616
START SLAVE SQL_THREAD;
1717
--replace_result $SERVER_MYPORT_3 MYPORT_3
1818
eval CHANGE MASTER 'inactive' TO
@@ -46,7 +46,6 @@ eval CHANGE MASTER 'inactive' TO
4646
--source include/wait_for_slave_sql_to_start.inc
4747
--source include/show_slave_status.inc
4848

49-
5049
--echo # Cleanup
5150
STOP SLAVE SQL_THREAD;
5251
--disconnect active_master

0 commit comments

Comments
 (0)