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
f5432e35
Unverified
Commit
f5432e35
authored
Feb 19, 2026
by
Micah Williamson
Committed by
GitHub
Feb 20, 2026
Browse files
[ROCm][CI] Loosen RemoteOpenAIServer Startup Timeout (#34922)
Signed-off-by:
Micah Williamson
<
micah.williamson@amd.com
>
parent
07cab212
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
tests/entrypoints/openai/test_serving_chat.py
tests/entrypoints/openai/test_serving_chat.py
+1
-1
tests/utils.py
tests/utils.py
+1
-1
No files found.
tests/entrypoints/openai/test_serving_chat.py
View file @
f5432e35
...
@@ -126,7 +126,7 @@ def gptoss_speculative_server(default_server_args: list[str]):
...
@@ -126,7 +126,7 @@ def gptoss_speculative_server(default_server_args: list[str]):
if
is_aiter_found_and_supported
():
if
is_aiter_found_and_supported
():
env_dict
=
{
"VLLM_ROCM_USE_AITER"
:
"1"
}
env_dict
=
{
"VLLM_ROCM_USE_AITER"
:
"1"
}
with
RemoteOpenAIServer
(
with
RemoteOpenAIServer
(
GPT_OSS_MODEL_NAME
,
server_args
,
env_dict
=
env_dict
GPT_OSS_MODEL_NAME
,
server_args
,
env_dict
=
env_dict
,
max_wait_seconds
=
480
)
as
remote_server
:
)
as
remote_server
:
yield
remote_server
yield
remote_server
...
...
tests/utils.py
View file @
f5432e35
...
@@ -190,7 +190,7 @@ class RemoteOpenAIServer:
...
@@ -190,7 +190,7 @@ class RemoteOpenAIServer:
model_loader
.
download_model
(
model_config
)
model_loader
.
download_model
(
model_config
)
self
.
_start_server
(
model
,
vllm_serve_args
,
env_dict
)
self
.
_start_server
(
model
,
vllm_serve_args
,
env_dict
)
max_wait_seconds
=
max_wait_seconds
or
24
0
max_wait_seconds
=
max_wait_seconds
or
36
0
self
.
_wait_for_server
(
url
=
self
.
url_for
(
"health"
),
timeout
=
max_wait_seconds
)
self
.
_wait_for_server
(
url
=
self
.
url_for
(
"health"
),
timeout
=
max_wait_seconds
)
def
__enter__
(
self
):
def
__enter__
(
self
):
...
...
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