aboutsummaryrefslogtreecommitdiff
path: root/src/garage
diff options
context:
space:
mode:
authorAlex <alex@adnab.me>2024-03-18 19:02:36 +0000
committerAlex <alex@adnab.me>2024-03-18 19:02:36 +0000
commit1a0bffae3491fae6af5a8d4defc5c6b84839e197 (patch)
treefcf59c762f2fd904a8c0567e7466f10a536ae77b /src/garage
parentfd2e19bf1bf301bc03aa29ffa3fe1e71008cbe50 (diff)
parentb55f52a9b75359b02938ac003a6ea853b36a4f3e (diff)
downloadgarage-1a0bffae3491fae6af5a8d4defc5c6b84839e197.tar.gz
garage-1a0bffae3491fae6af5a8d4defc5c6b84839e197.zip
Merge pull request 'Use connection pooling in sqlite backend' (#779) from sqlite-r2d2 into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/779
Diffstat (limited to 'src/garage')
-rw-r--r--src/garage/tests/common/garage.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/garage/tests/common/garage.rs b/src/garage/tests/common/garage.rs
index d1f0867a..006337ee 100644
--- a/src/garage/tests/common/garage.rs
+++ b/src/garage/tests/common/garage.rs
@@ -42,6 +42,10 @@ impl Instance {
.ok()
.unwrap_or_else(|| env::temp_dir().join(format!("garage-integ-test-{}", port)));
+ let db_engine = env::var("GARAGE_TEST_INTEGRATION_DB_ENGINE")
+ .ok()
+ .unwrap_or_else(|| "lmdb".into());
+
// Clean test runtime directory
if path.exists() {
fs::remove_dir_all(&path).expect("Could not clean test runtime directory");
@@ -52,7 +56,7 @@ impl Instance {
r#"
metadata_dir = "{path}/meta"
data_dir = "{path}/data"
-db_engine = "lmdb"
+db_engine = "{db_engine}"
replication_mode = "1"