1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Improve mtr replication setup

- Log slave state if sync_with_master_gtid fails, like we do
  in sync_with_master.inc
- Increase master-retry-count to 30 for slow builders
This commit is contained in:
Monty
2025-03-25 17:02:19 +02:00
parent bb5ae63aef
commit 23eb9d6821
4 changed files with 5 additions and 4 deletions

View File

@@ -132,8 +132,8 @@ let $assert_cond= "$sss_value" = "$ps_value";
source include/assert.inc;
let $ps_value= query_get_value(select Connection_Retry_Count from performance_schema.replication_connection_configuration, Connection_Retry_Count, 1);
let $assert_text= Value returned by PS table for Connection_Retry_Count should be 10.; # master-retry-count=10, as part of default my.cnf used by MTR
let $assert_cond= "$ps_value" = 10;
let $assert_text= Value returned by PS table for Connection_Retry_Count should be 30.; # master-retry-count=10, as part of default my.cnf used by MTR
let $assert_cond= "$ps_value" = 30;
source include/assert.inc;
--echo