mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
mysql_user: added flush privileges to write dynamic privs into db (#340)
This commit is contained in:
parent
2a57a4d659
commit
b730cd6675
2 changed files with 3 additions and 0 deletions
2
changelogs/fragments/338-mysql_user_fix.yml
Normal file
2
changelogs/fragments/338-mysql_user_fix.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- "mysql_user - fix missing dynamic privileges after revoke and grant privileges to user (https://github.com/ansible-collections/community.mysql/issues/120)."
|
|
@ -952,6 +952,7 @@ def privileges_revoke(cursor, user, host, db_table, priv, grant_option):
|
|||
query.append("FROM %s@%s")
|
||||
query = ' '.join(query)
|
||||
cursor.execute(query, (user, host))
|
||||
cursor.execute("FLUSH PRIVILEGES")
|
||||
|
||||
|
||||
def privileges_grant(cursor, user, host, db_table, priv, tls_requires):
|
||||
|
|
Loading…
Add table
Reference in a new issue