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
a979d977
Unverified
Commit
a979d977
authored
Mar 27, 2024
by
liiliiliil
Committed by
GitHub
Mar 26, 2024
Browse files
[Bugfix] Fix ipv6 address parsing bug (#3641)
parent
8af890a8
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 @
a979d977
...
...
@@ -205,7 +205,7 @@ def get_ip() -> str:
def
get_distributed_init_method
(
ip
:
str
,
port
:
int
)
->
str
:
return
f
"tcp://
{
ip
}
:
{
port
}
"
return
f
"tcp://
[
{
ip
}
]
:
{
port
}
"
def
get_open_port
()
->
int
:
...
...
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