tweak transport_tests to avoid logic duplication (#22158)

This commit is contained in:
Matt Davis 2017-03-01 15:54:27 -08:00 committed by GitHub
commit 42ccf9ca98
2 changed files with 6 additions and 5 deletions

View file

@ -92,8 +92,8 @@ class Connection(ConnectionBase):
def transport_test(self, connect_timeout):
''' Test the transport mechanism, if available '''
host = self._play_context.remote_addr
port = int(self._play_context.port or 5986)
host = self._winrm_host
port = int(self._winrm_port)
display.vvv("attempting transport test to %s:%s" % (host, port))
sock = socket.create_connection((host, port), connect_timeout)
sock.close()