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
7b16480a
Unverified
Commit
7b16480a
authored
Feb 11, 2026
by
Yan Ru Pei
Committed by
GitHub
Feb 12, 2026
Browse files
chore: warn out request rejection (#6222)
Signed-off-by:
PeaBrane
<
yanrpei@gmail.com
>
parent
937398cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
lib/runtime/src/pipeline/network/egress/push_router.rs
lib/runtime/src/pipeline/network/egress/push_router.rs
+5
-0
No files found.
lib/runtime/src/pipeline/network/egress/push_router.rs
View file @
7b16480a
...
...
@@ -314,6 +314,11 @@ where
// Check if we actually have any instances at all
let
all_instances
=
self
.client
.instance_ids
();
if
!
all_instances
.is_empty
()
{
tracing
::
warn!
(
instance_id
,
total_workers
=
all_instances
.len
(),
"Rejecting request: all workers are busy"
);
return
Err
(
PipelineError
::
ServiceOverloaded
(
"All workers are busy, please retry later"
.to_string
(),
)
...
...
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