remove closing connections after every task, this goes against conneciton caching and was not expected behaviuor nor inhertited from v1

This commit is contained in:
Brian Coca 2015-09-04 10:11:25 -04:00
parent 0eb0b56722
commit eb0e7e198b

View file

@ -128,13 +128,6 @@ class TaskExecutor:
return result
except AnsibleError as e:
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):
'''