Add some debugging output to help troubleshoot CI

Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys <es.rosenberg+github@gmail.com>
This commit is contained in:
E.S. Rosenberg a.k.a. Keeper of the Keys 2025-03-11 21:02:54 +02:00
parent e4f85f03d2
commit 3f7f036cb6

View file

@ -61,13 +61,14 @@ def user_is_locked(cursor, user, host):
# ACCOUNT LOCK does not have to be the last option in the CREATE USER query.
# Need to handle both DictCursor and non-DictCursor
if isinstance(result, list):
if result[0] and result[0].find('ACCOUNT LOCK') > 0:
if result[0].find('ACCOUNT LOCK') > 0:
return True
elif isinstance(result, dict):
for res in result.values():
if res.find('ACCOUNT LOCK') > 0:
return True
from pprint import pprint
pprint(result)
return False