mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-31 15:53:09 +00:00
checks connected property to validate connection in Server (#20695)
fixes #20693
This commit is contained in:
committed by
John R Barker
parent
614390a310
commit
d668d53112
@@ -120,8 +120,8 @@ class Server():
|
||||
self._start_time = datetime.datetime.now()
|
||||
|
||||
self.conn = connection_loader.get(play_context.connection, play_context, sys.stdin)
|
||||
rc, out, err = self.conn._connect()
|
||||
if rc != 0:
|
||||
self.conn._connect()
|
||||
if not self.conn.connected:
|
||||
raise AnsibleConnectionFailure(err)
|
||||
|
||||
self.socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
|
||||
|
||||
Reference in New Issue
Block a user