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
"docs/pages/backends/vscode:/vscode.git/clone" did not exist on "39d645e58647d6adb074650e46be5de25f3f3bc6"
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 {
endpoint_name
:
String
,
system_health
:
Arc
<
Mutex
<
SystemHealth
>>
,
)
->
Result
<
()
>
{
let
fqn_endpoint
=
format!
(
"{namespace}.{component_name}.{endpoint_name}"
);
let
handler
=
Arc
::
new
(
EndpointHandler
{
service_handler
,
instance_id
,
...
...
@@ -314,8 +316,7 @@ impl SharedTcpServer {
.set_endpoint_health_status
(
&
endpoint_name
,
crate
::
HealthStatus
::
Ready
);
tracing
::
info!
(
"Registered endpoint '{}' with shared TCP server on {}"
,
endpoint_name
,
"Registered endpoint '{fqn_endpoint}' with shared TCP server on {}"
,
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