We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3589ca7 commit da4f028Copy full SHA for da4f028
vllm/entrypoints/openai/cli_args.py
@@ -339,6 +339,10 @@ def validate_parsed_serve_args(args: argparse.Namespace):
339
raise ValueError(
340
"--shutdown-mode=drain is not supported with --api-server-count > 1"
341
)
342
+ if getattr(args, "data_parallel_size", 1) > 1:
343
+ raise ValueError(
344
+ "--shutdown-mode=drain is not supported with --data-parallel-size > 1"
345
+ )
346
347
348
def create_parser_for_docs() -> FlexibleArgumentParser:
0 commit comments