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
df4cd191
Unverified
Commit
df4cd191
authored
Feb 02, 2026
by
Yan Ru Pei
Committed by
GitHub
Feb 02, 2026
Browse files
chore: remove dead AllWorkersBusy handling in KvScheduler (#5869)
Signed-off-by:
PeaBrane
<
yanrpei@gmail.com
>
parent
8dd1fc07
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
9 deletions
+0
-9
lib/llm/src/kv_router/scheduler.rs
lib/llm/src/kv_router/scheduler.rs
+0
-9
No files found.
lib/llm/src/kv_router/scheduler.rs
View file @
df4cd191
...
...
@@ -44,9 +44,6 @@ pub enum KvSchedulerError {
#[error(
"no endpoints available to route work"
)]
NoEndpoints
,
#[error(
"all workers busy"
)]
AllWorkersBusy
,
#[error(
"endpoint subscriber shutdown"
)]
SubscriberShutdown
,
...
...
@@ -262,12 +259,6 @@ impl KvScheduler {
tokio
::
time
::
sleep
(
Duration
::
from_millis
(
5
))
.await
;
continue
;
}
// TODO: this is not actually hooked up
Err
(
KvSchedulerError
::
AllWorkersBusy
)
=>
{
tracing
::
trace!
(
"all workers busy; waiting for more capacity"
);
tokio
::
time
::
sleep
(
Duration
::
from_millis
(
5
))
.await
;
continue
;
}
Err
(
e
)
=>
{
tracing
::
error!
(
"error scheduling request: {:?}"
,
e
);
break
;
...
...
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