fix sanity tests for Python 2.6 found in ansible-core 2.12

This commit is contained in:
Laurent Indermuehle 2023-09-19 11:26:46 +02:00
parent 77c7beb514
commit 89b42e2b83
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -552,7 +552,13 @@ class MySQL_Info(object):
# and there is too many quotes. So we rewrite this. Also because we
# wrap the db_table between single quotes, I use backticks to
# indicate an empty string.
if set(priv) == {'PROXY', 'GRANT'} and user == 'root':
#
# TODO: when dropping support of ansible-core 2.12, change:
# set((x for x in priv))
# into:
# set(priv)
# This is because the Sanity test for 2.12 uses Python 2.6!!!
if set((x for x in priv)) == {'PROXY', 'GRANT'} and user == 'root':
priv_string.append("'``@`%`: 'PROXY,GRANT'")
continue