aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/system.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/rpc/system.rs')
-rw-r--r--src/rpc/system.rs13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/rpc/system.rs b/src/rpc/system.rs
index b0fef6f2..287cd666 100644
--- a/src/rpc/system.rs
+++ b/src/rpc/system.rs
@@ -100,7 +100,11 @@ pub struct System {
system_endpoint: Arc<Endpoint<SystemRpc, System>>,
rpc_listen_addr: SocketAddr,
- #[cfg(any(feature = "consul-discovery", feature = "consul-service-discovery", feature = "kubernetes-discovery"))]
+ #[cfg(any(
+ feature = "consul-discovery",
+ feature = "consul-service-discovery",
+ feature = "kubernetes-discovery"
+ ))]
rpc_public_addr: Option<SocketAddr>,
bootstrap_peers: Vec<String>,
@@ -386,7 +390,11 @@ impl System {
replication_mode,
replication_factor,
rpc_listen_addr: config.rpc_bind_addr,
- #[cfg(any(feature = "consul-discovery", feature = "consul-service-discovery", feature = "kubernetes-discovery"))]
+ #[cfg(any(
+ feature = "consul-discovery",
+ feature = "consul-service-discovery",
+ feature = "kubernetes-discovery"
+ ))]
rpc_public_addr,
bootstrap_peers: config.bootstrap_peers.clone(),
#[cfg(feature = "consul-discovery")]
@@ -601,7 +609,6 @@ impl System {
}
}
-
#[cfg(feature = "kubernetes-discovery")]
async fn advertise_to_kubernetes(self: Arc<Self>) {
let k = match &self.kubernetes_discovery {