Skip to content

Commit

Permalink
MDEV-35430: Add cast to semi-sync wait skip msg
Browse files Browse the repository at this point in the history
This came after I prepared #3493.
  • Loading branch information
ParadoxV5 committed Jan 11, 2025
1 parent 43233fe commit bbcb7fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/semisync_master.cc
Original file line number Diff line number Diff line change
Expand Up @@ -938,8 +938,8 @@ int Repl_semi_sync_master::commit_trx(const char *trx_wait_binlog_name,
sql_print_information(
"Skipping semi-sync wait for transaction at pos %s, %lu. This "
"should be because semi-sync turned off and on during the "
"lifetime of this transaction.",
trx_wait_binlog_name, trx_wait_binlog_pos););
"lifetime of this transaction.", trx_wait_binlog_name,
static_cast<unsigned long>(trx_wait_binlog_pos)););

/* The only known reason for a missing entry at this point is if
* semi-sync was turned off then on, so on debug builds, we track
Expand Down

0 comments on commit bbcb7fd

Please sign in to comment.