mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Debug CI error
Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys <es.rosenberg+github@gmail.com>
This commit is contained in:
parent
13cb20768f
commit
72482fc5ad
1 changed files with 4 additions and 1 deletions
|
@ -58,8 +58,11 @@ def user_is_locked(cursor, user, host):
|
||||||
# Per discussions on irc:libera.chat:#maria the query may return up to 2 rows but "ACCOUNT LOCK" should always be in the first row.
|
# Per discussions on irc:libera.chat:#maria the query may return up to 2 rows but "ACCOUNT LOCK" should always be in the first row.
|
||||||
result = cursor.fetchone()
|
result = cursor.fetchone()
|
||||||
|
|
||||||
|
from pprint import pprint
|
||||||
|
pprint(result)
|
||||||
|
|
||||||
# ACCOUNT LOCK does not have to be the last option in the CREATE USER query.
|
# ACCOUNT LOCK does not have to be the last option in the CREATE USER query.
|
||||||
if result[0].find('ACCOUNT LOCK') > 0:
|
if result[0] and result[0].find('ACCOUNT LOCK') > 0:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
return False
|
return False
|
||||||
|
|
Loading…
Add table
Reference in a new issue