From 442d2e8a15ae10e8170e21a311d6be5fb2b069da Mon Sep 17 00:00:00 2001 From: Shi Xiaowei <39303645+Shixiaowei02@users.noreply.github.com> Date: Mon, 19 Jan 2026 17:02:00 +0800 Subject: [PATCH] [None][test] adjust the dis-agg test timeout threshold (#10800) Signed-off-by: Shixiaowei02 <39303645+Shixiaowei02@users.noreply.github.com> --- tests/integration/defs/accuracy/test_disaggregated_serving.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/defs/accuracy/test_disaggregated_serving.py b/tests/integration/defs/accuracy/test_disaggregated_serving.py index c3d0fb05de..a98bdfab34 100644 --- a/tests/integration/defs/accuracy/test_disaggregated_serving.py +++ b/tests/integration/defs/accuracy/test_disaggregated_serving.py @@ -48,8 +48,8 @@ class Result(GenerationResultBase): DuckLLM = namedtuple('DuckLLM', ['args', 'tokenizer', 'generate_async']) -DEFAULT_TEST_TIMEOUT = 1200 -DEFAULT_SERVER_WAITING_TIMEOUT = 1200 +DEFAULT_TEST_TIMEOUT = 3600 +DEFAULT_SERVER_WAITING_TIMEOUT = 3600 @functools.lru_cache(maxsize=1)