-
-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
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
undefined method `ext_conf_dir' when using mariadb 2.0.0 cookbook #225
Comments
Same here. |
We're short on maintainers for mariadb at the moment, sadly. We'd welcome a PR if you wanted to take a crack at it! |
@aalmenar @askz here's the first use of the I suspect the issue is that |
Good guess @josephholsten ! My bad, i forget it while rewriting the whole cookbook for 2.0.0 version. The |
- Add tests - Add entry in CHANGELOG
- Add tests - Add entry in CHANGELOG
- Add tests - Add entry in CHANGELOG
- Add tests - Add entry in CHANGELOG
Just merged the correction in master, @aalmenar could you test it in your case please ? If it's ok, you can close it :-D |
Marking stale due to inactivity. Remove stale label or comment or this will be closed in 7 days. Alternatively drop by the #sous-chefs channel on the Chef Community Slack and we'll be happy to help! Thanks, Sous-Chefs. |
Cookbook version
2.0.0 (Or head from github)
Chef-client version
14.6.47
Platform Details
Debian 9 and Debian 10
Scenario:
When trying to set some variable not included in the list of mariadb_server_configuration:
mariadb_configuration 'extra_innodb' do
section 'mysqld'
option :innodb_thread_concurrency => 8,
:innodb_commit_concurrency => 8,
:innodb_read_io_threads => 8,
:innodb_flush_log_at_trx_commit => 1
end
Steps to Reproduce:
Include the scenario inside a cookbook recipe.
Expected Result:
Create a file inside /etc/mysql/conf.d/extra_innodb.cnf with the values:
[mysqld]
innodb_thread_concurrency = 8
innodb_commit_concurrency = 8
innodb_read_io_threads = 8
innodb_flush_log_at_trx_commit = 1
Actual Result:
An error from chef client stating:
NoMethodError: undefined method `ext_conf_dir' for Custom resource mariadb_configuration from cookbook mariadb
The text was updated successfully, but these errors were encountered: