mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 02:30:32 -07:00
Fix sanity issues
This commit is contained in:
parent
3f3f7e7b26
commit
09c528dd06
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ def mysql_connect(module, login_user=None, login_password=None, config_file='',
|
|||
if check_hostname is not None:
|
||||
if mysql_driver.__name__ == "pymysql":
|
||||
version_tuple = (n for n in mysql_driver.__version__.split('.') if n != 'None')
|
||||
if reduce(lambda x, y: int(x)*100 + int(y), version_tuple) >= 711:
|
||||
if reduce(lambda x, y: int(x) * 100 + int(y), version_tuple) >= 711:
|
||||
config['ssl']['check_hostname'] = check_hostname
|
||||
else:
|
||||
module.fail_json(msg='To use check_hostname, pymysql >= 0.7.11 is required on the target host')
|
||||
|
|
Loading…
Add table
Reference in a new issue