Skip to content

Commit

Permalink
Could not find a slave in topology and Failover exception #696
Browse files Browse the repository at this point in the history
  • Loading branch information
svaroqui committed Jul 9, 2024
1 parent 83a830b commit 6cba64b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cluster/cluster_chk.go
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,8 @@ func (cluster *Cluster) IsSameWsrepUUID() bool {

func (cluster *Cluster) IsNotHavingMySQLErrantTransaction() bool {
if cluster.GetMaster() == nil {
return false
// disable check if master is crashed as the slave can get more GTID events and so slave GTID is not ubset of masetr GTID
return true
}
if !(cluster.GetMaster().HasMySQLGTID()) {
return true
Expand Down

0 comments on commit 6cba64b

Please sign in to comment.