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
144d9b7c
Unverified
Commit
144d9b7c
authored
Feb 11, 2026
by
Tomas Ruiz
Committed by
GitHub
Feb 11, 2026
Browse files
[Benchmarks] Reduce ready checker log verbosity (#34349)
Signed-off-by:
Tomas Ruiz
<
tomas.ruiz.te@gmail.com
>
parent
83e26c83
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vllm/benchmarks/lib/ready_checker.py
vllm/benchmarks/lib/ready_checker.py
+2
-1
No files found.
vllm/benchmarks/lib/ready_checker.py
View file @
144d9b7c
...
...
@@ -66,7 +66,8 @@ async def wait_for_endpoint(
pbar
.
close
()
return
output
else
:
logger
.
warning
(
"Endpoint is not ready. Error='%s'"
,
output
.
error
)
err_last_line
=
str
(
output
.
error
).
rstrip
().
rsplit
(
"
\n
"
,
1
)[
-
1
]
logger
.
warning
(
"Endpoint is not ready. Error='%s'"
,
err_last_line
)
except
aiohttp
.
ClientConnectorError
:
pass
...
...
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