Skip to content

[Bug]: VLLM 0.11.1 Fails to recognize --rope-scaling arguement #29026

@jmskinner

Description

@jmskinner

Your current environment

Running vllm 0.11.1 through docker.

🐛 Describe the bug

The --rope-scaling argument used to enable long-context RoPE/YaRN scaling is available and functional in vLLM 0.11.0, but is missing in vLLM 0.11.1. In 0.11.1, the flag is rejected by the CLI and does not appear in vllm serve --help, preventing long-context configurations (e.g., for Qwen3 models).

This appears to be a regression introduced between version 0.11.0 → 0.11.1.

This is a regression affecting anyone attempting to use advanced RoPE/YaRN scaling settings in the CLI.

Running:

vllm serve Qwen/Qwen3-4B-Instruct-2507 \
 --download-dir /opt/hf_cache \
 --rope-scaling '{"rope_type":"yarn","factor":4.0,"original_max_position_embeddings":32768}' \
 --port 8000 \
 --dtype auto \
 --max-model-len 70000

Produces:

vllm: error: unrecognized arguments: --rope-scaling {"rope_type":"yarn","factor":4.0,"original_max_position_embeddings":32768}

Similarly vllm serve --help | grep rope returns no results in 0.11.1, while it does display the parameter in 0.11.0.

Actual Behavior
• The CLI argument parser in vLLM 0.11.1 does not recognize --rope-scaling.
• The flag is missing from help output and rejected when passed to vllm serve.

Impact

This regression prevents users from configuring extended context lengths using RoPE/YaRN scaling and blocks users deploying long-context models such as Qwen3 variants. The only current workaround is downgrading to vLLM 0.11.0.

Before submitting a new issue...

  • Make sure you already searched for relevant issues, and asked the chatbot living at the bottom right corner of the documentation page, which can answer lots of frequently asked questions.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions