Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
3a418254
"vllm/vscode:/vscode.git/clone" did not exist on "77f7bb4532af0e4d92641c5402453ef395a287c4"
Unverified
Commit
3a418254
authored
Feb 06, 2026
by
Karen Chung
Committed by
GitHub
Feb 06, 2026
Browse files
fix: Correctly pass DP rank from Dynamo router into vLLM engine (#6014)
parent
5035447f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
components/src/dynamo/vllm/handlers.py
components/src/dynamo/vllm/handlers.py
+3
-4
No files found.
components/src/dynamo/vllm/handlers.py
View file @
3a418254
...
...
@@ -1350,8 +1350,7 @@ class DecodeWorkerHandler(BaseWorkerHandler):
logger
.
debug
(
f
"Decode request
{
request_id
}
has no LoRA specified (model:
{
model_name
}
)"
)
dp_rank
=
request
.
get
(
"dp_rank"
,
None
)
dp_rank
=
request
.
get
(
"routing"
,
{}).
get
(
"dp_rank"
)
trace_headers
=
build_trace_headers
(
context
)
...
...
@@ -1395,7 +1394,7 @@ class DecodeWorkerHandler(BaseWorkerHandler):
request
,
self
.
default_sampling_params
)
dp_rank
=
request
.
get
(
"dp_rank"
,
None
)
dp_rank
=
request
.
get
(
"
routing"
,
{}).
get
(
"
dp_rank"
)
openai_request_id
=
request
.
get
(
"id"
)
or
request
.
get
(
"request_id"
,
request_id
)
previous_text
=
""
...
...
@@ -1565,7 +1564,7 @@ class PrefillWorkerHandler(BaseWorkerHandler):
f
"Prefill request
{
request_id
}
has no LoRA specified (model:
{
model_name
}
)"
)
dp_rank
=
request
.
get
(
"dp_rank"
,
None
)
dp_rank
=
request
.
get
(
"
routing"
,
{}).
get
(
"
dp_rank"
)
trace_headers
=
build_trace_headers
(
context
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment