Unverified Commit adeaa903 authored by Pavithra Vijayakrishnan's avatar Pavithra Vijayakrishnan Committed by GitHub
Browse files

ci: Add time delays for server start up. (#1452)


Signed-off-by: default avatarPavithra Vijayakrishnan <160681768+pvijayakrish@users.noreply.github.com>
parent 1f59718f
...@@ -135,6 +135,10 @@ deployment_graphs = { ...@@ -135,6 +135,10 @@ deployment_graphs = {
completions_response_handler, completions_response_handler,
], ],
marks=[pytest.mark.gpu_1, pytest.mark.vllm], marks=[pytest.mark.gpu_1, pytest.mark.vllm],
# FIXME: This is a hack to allow deployments to start before sending any requests.
# When using KV-router, if all the endpoints are not registered, the service
# enters a non-recoverable state.
delayed_start=120,
), ),
text_payload, text_payload,
), ),
...@@ -149,6 +153,10 @@ deployment_graphs = { ...@@ -149,6 +153,10 @@ deployment_graphs = {
completions_response_handler, completions_response_handler,
], ],
marks=[pytest.mark.gpu_2, pytest.mark.vllm], marks=[pytest.mark.gpu_2, pytest.mark.vllm],
# FIXME: This is a hack to allow deployments to start before sending any requests.
# When using KV-router, if all the endpoints are not registered, the service
# enters a non-recoverable state.
delayed_start=120,
), ),
text_payload, text_payload,
), ),
...@@ -208,7 +216,7 @@ deployment_graphs = { ...@@ -208,7 +216,7 @@ deployment_graphs = {
# FIXME: This is a hack to allow deployments to start before sending any requests. # FIXME: This is a hack to allow deployments to start before sending any requests.
# When using KV-router, if all the endpoints are not registered, the service # When using KV-router, if all the endpoints are not registered, the service
# enters a non-recoverable state. # enters a non-recoverable state.
delayed_start=60, delayed_start=120,
), ),
text_payload, text_payload,
), ),
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment