Commit 616d7e53 by Michael DeHaan

Merge pull request #6305 from amree/fix-mysql-replication-port

Fixed SQL syntax error when running mysql_replication module
parents 77108679 1d731e5c
...@@ -325,7 +325,7 @@ def main(): ...@@ -325,7 +325,7 @@ def main():
if master_password: if master_password:
chm.append("MASTER_PASSWORD='" + master_password + "'") chm.append("MASTER_PASSWORD='" + master_password + "'")
if master_port: if master_port:
chm.append("MASTER_PORT='" + master_port + "'") chm.append("MASTER_PORT=" + master_port)
if master_connect_retry: if master_connect_retry:
chm.append("MASTER_CONNECT_RETRY='" + master_connect_retry + "'") chm.append("MASTER_CONNECT_RETRY='" + master_connect_retry + "'")
if master_log_file: if master_log_file:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment