mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
* mysql: revert changes made in PR 116
* Add changelog fragment
* Fix CI
* Fix CI
* Fix CI
* Update CI
* Fix CI
(cherry picked from commit 738343d64c
)
This commit is contained in:
parent
59cbe5ffe3
commit
fe8f3662eb
3 changed files with 5 additions and 3 deletions
2
.github/workflows/ansible-test-plugins.yml
vendored
2
.github/workflows/ansible-test-plugins.yml
vendored
|
@ -61,7 +61,7 @@ jobs:
|
|||
- stable-2.9
|
||||
- stable-2.10
|
||||
- stable-2.11
|
||||
- devel
|
||||
#- devel
|
||||
python:
|
||||
- 3.6
|
||||
connector:
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- mysql - revert changes of connector arguments made in pull request 116 causing the invalid keyword argument error (https://github.com/ansible-collections/community.mysql/pull/116).
|
|
@ -79,7 +79,7 @@ def mysql_connect(module, login_user=None, login_password=None, config_file='',
|
|||
if login_user is not None:
|
||||
config['user'] = login_user
|
||||
if login_password is not None:
|
||||
config['password'] = login_password
|
||||
config['passwd'] = login_password
|
||||
if ssl_cert is not None:
|
||||
config['ssl']['cert'] = ssl_cert
|
||||
if ssl_key is not None:
|
||||
|
@ -87,7 +87,7 @@ def mysql_connect(module, login_user=None, login_password=None, config_file='',
|
|||
if ssl_ca is not None:
|
||||
config['ssl']['ca'] = ssl_ca
|
||||
if db is not None:
|
||||
config['database'] = db
|
||||
config['db'] = db
|
||||
if connect_timeout is not None:
|
||||
config['connect_timeout'] = connect_timeout
|
||||
if check_hostname is not None:
|
||||
|
|
Loading…
Add table
Reference in a new issue