change deprecated parameter db to database

This commit is contained in:
Daniel Ziegenberg 2021-03-12 15:01:28 +01:00
parent 30247e7c3d
commit b3a99372f6
No known key found for this signature in database
GPG key ID: 7E6F98FFADBEFD39

View file

@ -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: