We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b3cc75 commit 038de04Copy full SHA for 038de04
vllm/distributed/device_communicators/shm_broadcast.py
@@ -233,6 +233,7 @@ def __init__(
233
if is_valid_ipv6_address(connect_ip):
234
self.remote_socket.setsockopt(IPV6, 1)
235
remote_addr_ipv6 = True
236
+ connect_ip = f"[{connect_ip}]"
237
socket_addr = f"tcp://*:{remote_subscribe_port}"
238
self.remote_socket.bind(socket_addr)
239
remote_subscribe_addr = f"tcp://{connect_ip}:{remote_subscribe_port}"
0 commit comments