Skip to content

Commit

Permalink
MDEV-32365: post-fixes to rpl_semi_sync_slave_reply_fail
Browse files Browse the repository at this point in the history
  • Loading branch information
andrelkin committed Nov 9, 2023
1 parent 62d8065 commit d6872f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -32,7 +32,7 @@ connection slave;
include/diff_tables.inc [master:t1, slave:t1]
connection master;
set statement sql_log_bin=0 for call mtr.add_suppression("Read semi-sync reply magic number error");
SET @save_debug_master= @@global.debug;
SET @save_debug_master= @@global.debug_dbug;
SET GLOBAL debug_dbug="+d,semisync_corrupt_magic";
insert into t1 values (11);
connection slave;
Expand Down
2 changes: 1 addition & 1 deletion mysql-test/suite/rpl/t/rpl_semi_sync_slave_reply_fail.test
Expand Up @@ -78,7 +78,7 @@ insert into t1 values (10);

--connection master
set statement sql_log_bin=0 for call mtr.add_suppression("Read semi-sync reply magic number error");
SET @save_debug_master= @@global.debug;
SET @save_debug_master= @@global.debug_dbug;
SET GLOBAL debug_dbug="+d,semisync_corrupt_magic";
insert into t1 values (11);

Expand Down

0 comments on commit d6872f9

Please sign in to comment.