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
90b07594
Unverified
Commit
90b07594
authored
Jan 27, 2026
by
Graham King
Committed by
GitHub
Jan 27, 2026
Browse files
chore: Fix tests logging setup (#5693)
Signed-off-by:
Graham King
<
grahamk@nvidia.com
>
parent
382a26f0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
9 deletions
+2
-9
lib/llm/src/kv_router/publisher.rs
lib/llm/src/kv_router/publisher.rs
+0
-1
lib/runtime/src/pipeline/network/ingress/shared_tcp_endpoint.rs
...ntime/src/pipeline/network/ingress/shared_tcp_endpoint.rs
+2
-8
No files found.
lib/llm/src/kv_router/publisher.rs
View file @
90b07594
...
...
@@ -1890,7 +1890,6 @@ mod test_integration_publisher {
use
crate
::
kv_router
::
protocols
::
ActiveLoad
;
use
dynamo_runtime
::
distributed_test_utils
::
create_test_drt_async
;
use
dynamo_runtime
::
transports
::
event_plane
::
EventSubscriber
;
use
futures
::
StreamExt
;
#[tokio::test]
#[ignore]
// Mark as ignored as requested, because CI's integrations still don't have NATS
...
...
lib/runtime/src/pipeline/network/ingress/shared_tcp_endpoint.rs
View file @
90b07594
...
...
@@ -673,10 +673,7 @@ mod tests {
#[tokio::test]
async
fn
test_graceful_shutdown_waits_for_inflight_tcp_requests
()
{
// Initialize tracing for test debugging
let
_
=
tracing_subscriber
::
fmt
()
.with_test_writer
()
.with_max_level
(
tracing
::
Level
::
DEBUG
)
.try_init
();
crate
::
logging
::
init
();
let
cancellation_token
=
CancellationToken
::
new
();
let
bind_addr
:
SocketAddr
=
"127.0.0.1:0"
.parse
()
.unwrap
();
...
...
@@ -877,10 +874,7 @@ mod tests {
#[tokio::test]
async
fn
test_worker_pool_bounds_concurrency
()
{
let
_
=
tracing_subscriber
::
fmt
()
.with_test_writer
()
.with_max_level
(
tracing
::
Level
::
DEBUG
)
.try_init
();
crate
::
logging
::
init
();
// Use a small pool size for testing
let
pool_size
=
3
;
...
...
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