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
989e246e
Unverified
Commit
989e246e
authored
Nov 21, 2025
by
Zhongxuan (Daniel) Wang
Committed by
GitHub
Nov 21, 2025
Browse files
fix: worker_id updates not applied (#4518)
Signed-off-by:
Zhongxuan (Daniel) Wang
<
daniewang@nvidia.com
>
parent
d821a8b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/llm/src/kv_router.rs
lib/llm/src/kv_router.rs
+2
-2
No files found.
lib/llm/src/kv_router.rs
View file @
989e246e
...
@@ -639,8 +639,6 @@ impl AsyncEngine<SingleIn<PreprocessedRequest>, ManyOut<Annotated<LLMEngineOutpu
...
@@ -639,8 +639,6 @@ impl AsyncEngine<SingleIn<PreprocessedRequest>, ManyOut<Annotated<LLMEngineOutpu
prefill_marked
=
true
;
prefill_marked
=
true
;
}
}
yield
item
.clone
();
// Inject worker_id in first item's disaggregated_params if requested
// Inject worker_id in first item's disaggregated_params if requested
if
first_item
&&
should_populate_worker_id
{
if
first_item
&&
should_populate_worker_id
{
if
let
Some
(
ref
mut
data
)
=
item
.data
{
if
let
Some
(
ref
mut
data
)
=
item
.data
{
...
@@ -660,6 +658,8 @@ impl AsyncEngine<SingleIn<PreprocessedRequest>, ManyOut<Annotated<LLMEngineOutpu
...
@@ -660,6 +658,8 @@ impl AsyncEngine<SingleIn<PreprocessedRequest>, ManyOut<Annotated<LLMEngineOutpu
}
}
first_item
=
false
;
first_item
=
false
;
}
}
yield
item
;
}
}
}
}
}
}
...
...
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