mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 02:30:32 -07:00
Fix conditional check
This commit is contained in:
parent
b01a740b76
commit
78cd001194
1 changed files with 1 additions and 1 deletions
|
@ -1175,7 +1175,7 @@ def main():
|
|||
if priv and isinstance(priv, dict):
|
||||
priv = convert_priv_dict_to_str(priv)
|
||||
|
||||
if "REQUIRESSL" in priv:
|
||||
if priv and "REQUIRESSL" in priv:
|
||||
priv, tls_requires = handle_requiressl_in_priv_string(module, priv, tls_requires)
|
||||
|
||||
if mysql_driver is None:
|
||||
|
|
Loading…
Add table
Reference in a new issue