Fix typo in CHANGE MASTER TO syntax
This commit is contained in:
parent
6bc056e012
commit
2d402ab5ca
1 changed files with 1 additions and 1 deletions
|
@ -347,7 +347,7 @@ def main():
|
||||||
if master_ssl_key:
|
if master_ssl_key:
|
||||||
chm.append("MASTER_SSL_KEY='" + master_ssl_key + "'")
|
chm.append("MASTER_SSL_KEY='" + master_ssl_key + "'")
|
||||||
if master_ssl_cipher:
|
if master_ssl_cipher:
|
||||||
chm.append("MASTER_SSL_CIPTHER='" + master_ssl_cipher + "'")
|
chm.append("MASTER_SSL_CIPHER='" + master_ssl_cipher + "'")
|
||||||
changemaster(cursor,chm)
|
changemaster(cursor,chm)
|
||||||
module.exit_json(changed=True)
|
module.exit_json(changed=True)
|
||||||
elif mode in "startslave":
|
elif mode in "startslave":
|
||||||
|
|
Loading…
Reference in a new issue