Based on the previous CI build is_role is not (always?) present so checking for it, right now with pprint of the line for debug purposes

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 13:09:05 +02:00
parent 178eade8e8
commit 3d9df81d94

View file

@ -653,8 +653,11 @@ class MySQL_Info(object):
if authentications:
output_dict.update(authentications[0])
if not line['is_role']:
if line.get('is_role') and not line['is_role']:
output_dict['locked'] = user_is_locked(self.cursor, user, host)
else:
from pprint import pprint
pprint(line)
# TODO password_option
# but both are not supported by mysql_user atm. So no point yet.