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
f05f7629
Unverified
Commit
f05f7629
authored
Nov 21, 2025
by
Graham King
Committed by
GitHub
Nov 21, 2025
Browse files
chore: Make nats_client private at crate level, various tidy up (#4513)
Signed-off-by:
Graham King
<
grahamk@nvidia.com
>
parent
27904535
Changes
22
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
lib/runtime/src/system_status_server.rs
lib/runtime/src/system_status_server.rs
+1
-2
lib/runtime/tests/soak.rs
lib/runtime/tests/soak.rs
+1
-2
No files found.
lib/runtime/src/system_status_server.rs
View file @
f05f7629
...
...
@@ -636,7 +636,7 @@ mod integration_tests {
// Now create a namespace, component, and endpoint to make the system healthy
let
namespace
=
drt
.namespace
(
"ns1234"
)
.unwrap
();
let
mut
component
=
namespace
.component
(
"comp1234"
)
.unwrap
();
let
component
=
namespace
.component
(
"comp1234"
)
.unwrap
();
// Create a simple test handler
use
crate
::
pipeline
::{
async_trait
,
network
::
Ingress
,
AsyncEngine
,
AsyncEngineContextProvider
,
Error
,
ManyOut
,
SingleIn
};
...
...
@@ -662,7 +662,6 @@ mod integration_tests {
// Start the service and endpoint with a health check payload
// This will automatically register the endpoint for health monitoring
tokio
::
spawn
(
async
move
{
component
.add_stats_service
()
.await
.unwrap
();
let
_
=
component
.endpoint
(
ENDPOINT_NAME
)
.endpoint_builder
()
.handler
(
ingress
)
...
...
lib/runtime/tests/soak.rs
View file @
f05f7629
...
...
@@ -120,8 +120,7 @@ mod integration {
// // make the ingress discoverable via a component service
// // we must first create a service, then we can attach one more more endpoints
let
mut
component
=
runtime
.namespace
(
DEFAULT_NAMESPACE
)
?
.component
(
"backend"
)
?
;
component
.add_stats_service
()
.await
?
;
let
component
=
runtime
.namespace
(
DEFAULT_NAMESPACE
)
?
.component
(
"backend"
)
?
;
component
.endpoint
(
"generate"
)
.endpoint_builder
()
...
...
Prev
1
2
Next
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