mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
Revert "remove closing connections after every task, this goes against conneciton caching and was not expected behaviuor nor inhertited from v1"
needed for winrm, disabled closing connections in ssh to avoid issues with that persistance, need to normalize all this in future
This reverts commit 23a22397bf.
This commit is contained in:
@@ -129,6 +129,13 @@ class TaskExecutor:
|
|||||||
return result
|
return result
|
||||||
except AnsibleError as e:
|
except AnsibleError as e:
|
||||||
return dict(failed=True, msg=to_unicode(e, nonstring='simplerepr'))
|
return dict(failed=True, msg=to_unicode(e, nonstring='simplerepr'))
|
||||||
|
finally:
|
||||||
|
try:
|
||||||
|
self._connection.close()
|
||||||
|
except AttributeError:
|
||||||
|
pass
|
||||||
|
except Exception as e:
|
||||||
|
debug("error closing connection: %s" % to_unicode(e))
|
||||||
|
|
||||||
def _get_loop_items(self):
|
def _get_loop_items(self):
|
||||||
'''
|
'''
|
||||||
|
|||||||
Reference in New Issue
Block a user