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
2f15f334
Unverified
Commit
2f15f334
authored
Mar 06, 2026
by
Ryan McCormick
Committed by
GitHub
Mar 06, 2026
Browse files
chore(UX): Log full endpoint name when registering TCP endpoint (#6964)
parent
ff6c3f7f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
lib/runtime/src/pipeline/network/ingress/shared_tcp_endpoint.rs
...ntime/src/pipeline/network/ingress/shared_tcp_endpoint.rs
+3
-2
No files found.
lib/runtime/src/pipeline/network/ingress/shared_tcp_endpoint.rs
View file @
2f15f334
...
@@ -294,6 +294,8 @@ impl SharedTcpServer {
...
@@ -294,6 +294,8 @@ impl SharedTcpServer {
endpoint_name
:
String
,
endpoint_name
:
String
,
system_health
:
Arc
<
Mutex
<
SystemHealth
>>
,
system_health
:
Arc
<
Mutex
<
SystemHealth
>>
,
)
->
Result
<
()
>
{
)
->
Result
<
()
>
{
let
fqn_endpoint
=
format!
(
"{namespace}.{component_name}.{endpoint_name}"
);
let
handler
=
Arc
::
new
(
EndpointHandler
{
let
handler
=
Arc
::
new
(
EndpointHandler
{
service_handler
,
service_handler
,
instance_id
,
instance_id
,
...
@@ -314,8 +316,7 @@ impl SharedTcpServer {
...
@@ -314,8 +316,7 @@ impl SharedTcpServer {
.set_endpoint_health_status
(
&
endpoint_name
,
crate
::
HealthStatus
::
Ready
);
.set_endpoint_health_status
(
&
endpoint_name
,
crate
::
HealthStatus
::
Ready
);
tracing
::
info!
(
tracing
::
info!
(
"Registered endpoint '{}' with shared TCP server on {}"
,
"Registered endpoint '{fqn_endpoint}' with shared TCP server on {}"
,
endpoint_name
,
self
.actual_address
()
.unwrap_or
(
self
.bind_addr
)
self
.actual_address
()
.unwrap_or
(
self
.bind_addr
)
);
);
...
...
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