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
1f9b69b0
Unverified
Commit
1f9b69b0
authored
Dec 09, 2025
by
Tzu-Ling Kan
Committed by
GitHub
Dec 09, 2025
Browse files
feat: Change health check log level from info to debug (#4818)
Signed-off-by:
tzulingk@nvidia.com
<
tzulingk@nvidia.com
>
parent
1e37c103
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/runtime/src/health_check.rs
lib/runtime/src/health_check.rs
+2
-2
No files found.
lib/runtime/src/health_check.rs
View file @
1f9b69b0
...
@@ -145,7 +145,7 @@ impl HealthCheckManager {
...
@@ -145,7 +145,7 @@ impl HealthCheckManager {
tokio
::
select!
{
tokio
::
select!
{
_
=
tokio
::
time
::
sleep
(
canary_wait
)
=>
{
_
=
tokio
::
time
::
sleep
(
canary_wait
)
=>
{
// Timeout - send health check for this specific endpoint
// Timeout - send health check for this specific endpoint
info
!
(
"Canary timer expired for {}, sending health check"
,
endpoint_subject
);
debug
!
(
"Canary timer expired for {}, sending health check"
,
endpoint_subject
);
// Get the health check payload for this endpoint
// Get the health check payload for this endpoint
let
target
=
manager
.drt
.system_health
()
.lock
()
.get_health_check_target
(
&
endpoint_subject
);
let
target
=
manager
.drt
.system_health
()
.lock
()
.get_health_check_target
(
&
endpoint_subject
);
...
@@ -292,7 +292,7 @@ impl HealthCheckManager {
...
@@ -292,7 +292,7 @@ impl HealthCheckManager {
);
);
false
false
}
else
{
}
else
{
info
!
(
"Health check successful for {}"
,
endpoint_subject_owned
);
debug
!
(
"Health check successful for {}"
,
endpoint_subject_owned
);
true
true
}
}
}
else
{
}
else
{
...
...
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