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
{{ message }}
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.
If master does not have replication settings, i.e. slave slave status is "Empty set", the attempt to make it as co-master with the slave fails with the error:
ChangeMasterTo: Cannot change master on: master1:3306 because replication is running
As far as I understand it fails in ChangeMasterCredentials function, checking whether replication is stopped or not:
if !instance.ReplicationThreadsStopped() {
return instance, fmt.Errorf("ChangeMasterTo: Cannot change master on: %+v because replication is running", *instanceKey)
}
But replication is neither stopped nor running. I suppose, it is "ReplicationThreadStateNoThread".
PS: this is latest version 3.0.14 issue.
The text was updated successfully, but these errors were encountered:
If master does not have replication settings, i.e.
slave slave status
is "Empty set", the attempt to make it as co-master with the slave fails with the error:As far as I understand it fails in
ChangeMasterCredentials
function, checking whether replication is stopped or not:But replication is neither stopped nor running. I suppose, it is "ReplicationThreadStateNoThread".
PS: this is latest version 3.0.14 issue.
The text was updated successfully, but these errors were encountered: