From 22970c16266746971f80fbd8e1fd505a5f35511d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Lucchesi?= Date: Mon, 12 Jan 2026 10:58:21 +0100 Subject: [PATCH] [Misc] Disable default `--ready-check-timeout-sec` extra call in vllm bench (#30975) Signed-off-by: NickLucche --- vllm/benchmarks/serve.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/vllm/benchmarks/serve.py b/vllm/benchmarks/serve.py index 796f56a21..9d6298927 100644 --- a/vllm/benchmarks/serve.py +++ b/vllm/benchmarks/serve.py @@ -1488,10 +1488,9 @@ def add_cli_args(parser: argparse.ArgumentParser): parser.add_argument( "--ready-check-timeout-sec", type=int, - default=600, + default=0, help="Maximum time to wait for the endpoint to become ready " - "in seconds (default: 600 seconds / 10 minutes). If set to 0, " - "the ready check will be skipped.", + "in seconds. Ready check will be skipped by default.", ) parser.add_argument(