fix tuple indexerror when no accounts are found

This commit is contained in:
Laurent Indermuehle 2024-06-06 13:46:23 +02:00
parent 50e7413b88
commit ec7686d820
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -113,6 +113,9 @@ def get_existing_authentication(cursor, user, host):
group by plugin, authentication_string limit 2""", {'user': user, 'host': host})
rows = cursor.fetchall()
if len(rows) == 0:
return None
# Mysql_info use a DictCursor so we must convert back to a list
# otherwise we get KeyError 0
if isinstance(rows, dict):