mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
fix tuple indexerror when no accounts are found
This commit is contained in:
parent
50e7413b88
commit
ec7686d820
1 changed files with 3 additions and 0 deletions
|
@ -113,6 +113,9 @@ def get_existing_authentication(cursor, user, host):
|
||||||
group by plugin, authentication_string limit 2""", {'user': user, 'host': host})
|
group by plugin, authentication_string limit 2""", {'user': user, 'host': host})
|
||||||
rows = cursor.fetchall()
|
rows = cursor.fetchall()
|
||||||
|
|
||||||
|
if len(rows) == 0:
|
||||||
|
return None
|
||||||
|
|
||||||
# Mysql_info use a DictCursor so we must convert back to a list
|
# Mysql_info use a DictCursor so we must convert back to a list
|
||||||
# otherwise we get KeyError 0
|
# otherwise we get KeyError 0
|
||||||
if isinstance(rows, dict):
|
if isinstance(rows, dict):
|
||||||
|
|
Loading…
Add table
Reference in a new issue