You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DISTMYSQL-185, removed the added return in the GTID section to avoid removing some normal behavior. The sub-errors are now collected in a strings and reported in the regular logic flow.
// Otherwise nothing was moved via GTID. Maybe we don't have any GTIDs, we continue.
2844
2843
}
@@ -2863,7 +2862,7 @@ func relocateReplicasInternal(replicas [](*Instance), instance, other *Instance)
2863
2862
}
2864
2863
2865
2864
// Too complex
2866
-
returnnil, log.Errorf("Relocating %+v replicas of %+v below %+v turns to be too complex; please do it manually", len(replicas), instance.Key, other.Key), errs
2865
+
returnnil, log.Errorf("Relocating %+v replicas of %+v below %+v turns to be too complex; please do it manually. Additional Errors: %v", len(replicas), instance.Key, other.Key,gtidErrorsMsg), errs
2867
2866
}
2868
2867
2869
2868
// RelocateReplicas will attempt moving replicas of an instance indicated by instanceKey below another instance.
0 commit comments