mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
committed by
Matt Clay
parent
f595b27e47
commit
4c92652e7b
@@ -337,7 +337,7 @@ def _create_connection(host, port, connect_timeout):
|
||||
Socket object
|
||||
"""
|
||||
if sys.version_info < (2, 6):
|
||||
(family, _) = _convert_host_to_ip(host)
|
||||
(family, _) = (_convert_host_to_ip(host))[0]
|
||||
connect_socket = socket.socket(family, socket.SOCK_STREAM)
|
||||
connect_socket.settimeout(connect_timeout)
|
||||
connect_socket.connect( (host, port) )
|
||||
|
||||
Reference in New Issue
Block a user