We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Salt: 3006.1+192.g23582dce20
mysql: server_config: file: 50-server.cnf # my.cnf sections changes sections: mysqld: replicate-ignore-table: - core.table1 - core.table2 - core.table3
When an array of data is inserted into the config file the above example is written out as
replicate-ignore-table = ['core.table1', 'core.table2', 'core.table3']
This isn't a valid format for mysql configuration.
The output should be as follows.
replicate-ignore-table = 'core.table1' replicate-ignore-table = 'core.table2' replicate-ignore-table = 'core.table3'
I've fixed it in a PR I'll be posting shortly.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Your setup
Formula commit hash / release tag
Versions reports (master & minion)
Salt: 3006.1+192.g23582dce20
Pillar / config used
Bug details
Describe the bug
When an array of data is inserted into the config file the above example is written out as
This isn't a valid format for mysql configuration.
Steps to reproduce the bug
Expected behaviour
The output should be as follows.
Attempts to fix the bug
I've fixed it in a PR I'll be posting shortly.
The text was updated successfully, but these errors were encountered: