diff options
author | Mendes <mendes.oulamara@pm.me> | 2022-10-10 17:19:25 +0200 |
---|---|---|
committer | Mendes <mendes.oulamara@pm.me> | 2022-10-10 17:19:25 +0200 |
commit | fcf9ac674a2842b2b55d933e60af5af93dcc4592 (patch) | |
tree | 56fdbd28db4e769b5ee74f771cfa3eefa7abd2a8 /src/db/lib.rs | |
parent | 911eb17bd9e25f2f02fbe1de81a3384e99ea13ac (diff) | |
download | garage-fcf9ac674a2842b2b55d933e60af5af93dcc4592.tar.gz garage-fcf9ac674a2842b2b55d933e60af5af93dcc4592.zip |
Tests written in layout.rs
added staged_parameters to ClusterLayout
removed the serde(default) -> will need a migration function
Diffstat (limited to 'src/db/lib.rs')
-rw-r--r-- | src/db/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db/lib.rs b/src/db/lib.rs index d96586be..af539494 100644 --- a/src/db/lib.rs +++ b/src/db/lib.rs @@ -3,7 +3,7 @@ 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."); +//compile_error!("Must activate the Cargo feature for at least one DB engine: lmdb, sled or sqlite."); #[cfg(feature = "lmdb")] pub mod lmdb_adapter; |