diff options
author | Alex Auvolat <alex@adnab.me> | 2022-09-07 18:02:13 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-09-07 18:02:13 +0200 |
commit | 14492044394a875475b2159d51234ac1e35531bf (patch) | |
tree | 32b47a80219682da216379e65733294c5440ec01 | |
parent | 2e00809af58c142c86fae5f4bad85c4ef5e57872 (diff) | |
download | garage-14492044394a875475b2159d51234ac1e35531bf.tar.gz garage-14492044394a875475b2159d51234ac1e35531bf.zip |
Add warnings when features are not included in build
-rw-r--r-- | src/db/lib.rs | 3 | ||||
-rw-r--r-- | src/garage/server.rs | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/db/lib.rs b/src/db/lib.rs index 5304c195..d96586be 100644 --- a/src/db/lib.rs +++ b/src/db/lib.rs @@ -2,6 +2,9 @@ #[cfg(feature = "sqlite")] extern crate tracing; +#[cfg(not(any(feature = "lmdb", feature = "sled", feature = "sqlite")))] +compile_error!("Must activate the Cargo feature for at least one DB engine: lmdb, sled or sqlite."); + #[cfg(feature = "lmdb")] pub mod lmdb_adapter; #[cfg(feature = "sled")] diff --git a/src/garage/server.rs b/src/garage/server.rs index fb6d2279..3c96ff22 100644 --- a/src/garage/server.rs +++ b/src/garage/server.rs @@ -114,6 +114,11 @@ pub async fn run_server(config_file: PathBuf) -> Result<(), Error> { )); } + #[cfg(not(feature = "metrics"))] + if config.admin_api.metrics_token.is_some() { + warn!("This Garage version is built without the metrics feature"); + } + // Stuff runs // When a cancel signal is sent, stuff stops |