From 2254b29178439269cf977c754cdc1cdfb4f29b7e Mon Sep 17 00:00:00 2001 From: Daniel Ziegenberg Date: Tue, 16 Mar 2021 06:15:12 +0100 Subject: [PATCH] change deprecated parameter pw and db (#116) * change deprecated parameter pw to password * change deprecated parameter db to database * add changelog fragment --- .../116-change_deprecated_connection_ parameters.yml | 2 ++ plugins/module_utils/mysql.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 changelogs/fragments/116-change_deprecated_connection_ parameters.yml diff --git a/changelogs/fragments/116-change_deprecated_connection_ parameters.yml b/changelogs/fragments/116-change_deprecated_connection_ parameters.yml new file mode 100644 index 0000000..d6b0d7e --- /dev/null +++ b/changelogs/fragments/116-change_deprecated_connection_ parameters.yml @@ -0,0 +1,2 @@ +minor_changes: +- mysql module utils - change deprecated connection parameters ``passwd`` and ``db`` to ``password`` and ``database`` (https://github.com/ansible-collections/community.mysql/pull/116). \ No newline at end of file diff --git a/plugins/module_utils/mysql.py b/plugins/module_utils/mysql.py index 5af9c20..67e0033 100644 --- a/plugins/module_utils/mysql.py +++ b/plugins/module_utils/mysql.py @@ -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['passwd'] = login_password + config['password'] = 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['db'] = db + config['database'] = db if connect_timeout is not None: config['connect_timeout'] = connect_timeout if check_hostname is not None: