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
a408820f
Unverified
Commit
a408820f
authored
Jun 04, 2025
by
Michael Goin
Committed by
GitHub
Jun 04, 2025
Browse files
[Bugfix] Fix port handling in make_zmq_path (#19117)
parent
c56ed8bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vllm/utils.py
vllm/utils.py
+1
-1
No files found.
vllm/utils.py
View file @
a408820f
...
...
@@ -2461,7 +2461,7 @@ def make_zmq_path(scheme: str, host: str, port: Optional[int] = None) -> str:
Returns:
A properly formatted ZMQ path string.
"""
if
not
port
:
if
port
is
None
:
return
f
"
{
scheme
}
://
{
host
}
"
if
is_valid_ipv6_address
(
host
):
return
f
"
{
scheme
}
://[
{
host
}
]:
{
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