Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
038de04d
Unverified
Commit
038de04d
authored
Mar 24, 2025
by
Russell Bryant
Committed by
GitHub
Mar 24, 2025
Browse files
Fix zmq IPv6 URL format error (#15341)
Signed-off-by:
Russell Bryant
<
rbryant@redhat.com
>
parent
6b3cc75b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
vllm/distributed/device_communicators/shm_broadcast.py
vllm/distributed/device_communicators/shm_broadcast.py
+1
-0
No files found.
vllm/distributed/device_communicators/shm_broadcast.py
View file @
038de04d
...
@@ -233,6 +233,7 @@ class MessageQueue:
...
@@ -233,6 +233,7 @@ class MessageQueue:
if
is_valid_ipv6_address
(
connect_ip
):
if
is_valid_ipv6_address
(
connect_ip
):
self
.
remote_socket
.
setsockopt
(
IPV6
,
1
)
self
.
remote_socket
.
setsockopt
(
IPV6
,
1
)
remote_addr_ipv6
=
True
remote_addr_ipv6
=
True
connect_ip
=
f
"[
{
connect_ip
}
]"
socket_addr
=
f
"tcp://*:
{
remote_subscribe_port
}
"
socket_addr
=
f
"tcp://*:
{
remote_subscribe_port
}
"
self
.
remote_socket
.
bind
(
socket_addr
)
self
.
remote_socket
.
bind
(
socket_addr
)
remote_subscribe_addr
=
f
"tcp://
{
connect_ip
}
:
{
remote_subscribe_port
}
"
remote_subscribe_addr
=
f
"tcp://
{
connect_ip
}
:
{
remote_subscribe_port
}
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment