mysql_role: remove redundant connection closing (fixes #329) (#330) (#332)

* mysql_role: remove redundant connection closing (fixes #329)

* add changelog fragment for pull request #330

Co-authored-by: Felix Hamme <felix.hamme@ionos.com>
(cherry picked from commit 641894e6e8)

Co-authored-by: betanummeric <40263343+betanummeric@users.noreply.github.com>
This commit is contained in:
patchback[bot] 2022-04-05 11:31:38 +02:00 committed by GitHub
parent 9857a16cb5
commit d38813d418
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- "mysql_role - remove redundant connection closing (https://github.com/ansible-collections/community.mysql/pull/330)."

View file

@ -1059,8 +1059,6 @@ def main():
except Exception as e:
module.fail_json(msg=to_native(e))
# Exit
db_conn.close()
module.exit_json(changed=changed)