Skip to content

Commit adeaa90

Browse files
authored
ci: Add time delays for server start up. (#1452)
Signed-off-by: Pavithra Vijayakrishnan <160681768+pvijayakrish@users.noreply.github.com>
1 parent 1f59718 commit adeaa90

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

tests/serve/test_dynamo_serve.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,10 @@
135135
completions_response_handler,
136136
],
137137
marks=[pytest.mark.gpu_1, pytest.mark.vllm],
138+
# FIXME: This is a hack to allow deployments to start before sending any requests.
139+
# When using KV-router, if all the endpoints are not registered, the service
140+
# enters a non-recoverable state.
141+
delayed_start=120,
138142
),
139143
text_payload,
140144
),
@@ -149,6 +153,10 @@
149153
completions_response_handler,
150154
],
151155
marks=[pytest.mark.gpu_2, pytest.mark.vllm],
156+
# FIXME: This is a hack to allow deployments to start before sending any requests.
157+
# When using KV-router, if all the endpoints are not registered, the service
158+
# enters a non-recoverable state.
159+
delayed_start=120,
152160
),
153161
text_payload,
154162
),
@@ -208,7 +216,7 @@
208216
# FIXME: This is a hack to allow deployments to start before sending any requests.
209217
# When using KV-router, if all the endpoints are not registered, the service
210218
# enters a non-recoverable state.
211-
delayed_start=60,
219+
delayed_start=120,
212220
),
213221
text_payload,
214222
),

0 commit comments

Comments
 (0)