diff options
author | Roberto Hidalgo <un@rob.mx> | 2023-05-05 16:18:24 -0600 |
---|---|---|
committer | Roberto Hidalgo <un@rob.mx> | 2023-05-22 08:57:15 -0600 |
commit | 02ba9016ab6eca5bb4964549de002573d5a3a07a (patch) | |
tree | 85fc01db2fa60605d2016f253da3a64ae8ef75d9 /src/rpc/lib.rs | |
parent | 9d833bb7efc2c166036db38da89b0b5ac8f466fe (diff) | |
download | garage-02ba9016ab6eca5bb4964549de002573d5a3a07a.tar.gz garage-02ba9016ab6eca5bb4964549de002573d5a3a07a.zip |
register consul services against local agent instead of catalog api
Diffstat (limited to 'src/rpc/lib.rs')
-rw-r--r-- | src/rpc/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rpc/lib.rs b/src/rpc/lib.rs index 5aec92c0..2c5ed107 100644 --- a/src/rpc/lib.rs +++ b/src/rpc/lib.rs @@ -8,6 +8,8 @@ mod system_metrics; #[cfg(feature = "consul-discovery")] mod consul; +#[cfg(feature = "consul-service-discovery")] +mod consul_services; #[cfg(feature = "kubernetes-discovery")] mod kubernetes; |