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 a68ed76 commit 683707cCopy full SHA for 683707c
python/sglang/srt/distributed/device_communicators/shm_broadcast.py
@@ -225,7 +225,8 @@ def __init__(
225
remote_subscribe_port = get_open_port()
226
if is_valid_ipv6_address(connect_ip):
227
self.remote_socket.setsockopt(IPV6, 1)
228
- socket_addr = f"tcp://*:{remote_subscribe_port}"
+ connect_ip = f"[{connect_ip}]"
229
+ socket_addr = f"tcp://{connect_ip}:{remote_subscribe_port}"
230
self.remote_socket.bind(socket_addr)
231
232
else:
0 commit comments