fix build with discovery features

This commit is contained in:
Alex Auvolat 2023-12-07 15:15:59 +01:00
parent 9cecea64d4
commit 431b28e0cf
No known key found for this signature in database
GPG Key ID: 0E496D15096376BE

View File

@ -514,7 +514,7 @@ impl System {
if let Err(e) = c
.publish_consul_service(
self.netapp.id,
&self.local_status.load_full().hostname,
&self.local_status.load_full().hostname.as_deref().unwrap(),
rpc_public_addr,
)
.await
@ -541,7 +541,7 @@ impl System {
if let Err(e) = publish_kubernetes_node(
k,
self.netapp.id,
&self.local_status.load_full().hostname,
&self.local_status.load_full().hostname.as_deref().unwrap(),
rpc_public_addr,
)
.await