Add warnings when features are not included in build
continuous-integration/drone/push Build is failing Details
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
Alex 2022-09-07 18:02:13 +02:00
parent 2e00809af5
commit 1449204439
Signed by: lx
GPG Key ID: 0E496D15096376BE
2 changed files with 8 additions and 0 deletions

View File

@ -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")]

View File

@ -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