Skip to content

Commit

Permalink
Merge pull request #45 from sinfomicien/fix-issue-43
Browse files Browse the repository at this point in the history
Correct issue #43
  • Loading branch information
sinfomicien committed Jan 12, 2015
2 parents 54472fb + 19642ad commit fa0651f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/replication.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_mysql_command(host, port, user, password)
unless new_resource.master_log_file.nil?
sql_string += ', MASTER_LOG_FILE=\'' + \
new_resource.master_log_file + '\''
sql_string += ', MASTER_LOG_POS=' + new_resource.master_log_pos
sql_string += ', MASTER_LOG_POS=' + new_resource.master_log_pos.to_s
end
else
# Use GTID replication
Expand Down

0 comments on commit fa0651f

Please sign in to comment.