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

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

* add changelog fragment for pull request #330

Co-authored-by: Felix Hamme <felix.hamme@ionos.com>
This commit is contained in:
betanummeric 2022-04-05 09:35:46 +02:00 committed by GitHub
parent e319ac082e
commit 641894e6e8
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

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