mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-05 02:03:09 +00:00
updates ensure_connect decorator function
only calls _connect() if _connected is False
This commit is contained in:
committed by
Brian Coca
parent
8296511ed0
commit
83fe2170ff
@@ -49,7 +49,8 @@ BUFSIZE = 65536
|
||||
def ensure_connect(func):
|
||||
@wraps(func)
|
||||
def wrapped(self, *args, **kwargs):
|
||||
self._connect()
|
||||
if not self._connected:
|
||||
self._connect()
|
||||
return func(self, *args, **kwargs)
|
||||
return wrapped
|
||||
|
||||
|
||||
Reference in New Issue
Block a user