1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

updates ensure_connect decorator function

only calls _connect() if _connected is False
This commit is contained in:
Peter Sprygada 2017-01-20 22:42:20 -05:00 committed by Brian Coca
parent 8296511ed0
commit 83fe2170ff

View file

@ -49,6 +49,7 @@ BUFSIZE = 65536
def ensure_connect(func):
@wraps(func)
def wrapped(self, *args, **kwargs):
if not self._connected:
self._connect()
return func(self, *args, **kwargs)
return wrapped