Compare commits

...

2 Commits

Author SHA1 Message Date
IAmTomahawkx
173a3effda fix: minio wants the default region 2026-05-08 16:47:20 -07:00
Infiland
34f05f4b2f fix: avoid stack overflow in database tests
Signed-off-by: Infiland <ljubica.citydesign@gmail.com>
2026-05-08 16:00:27 -07:00
2 changed files with 2 additions and 2 deletions

View File

@@ -61,7 +61,7 @@ secret = "ZjCofRlfm6GGtjlifmNpCDkcQbEIIVC0"
# S3 protocol endpoint
endpoint = "http://127.0.0.1:14009"
# S3 region name
region = "minio"
region = "us-east-1"
# S3 protocol key ID
access_key_id = "minioautumn"
# S3 protocol access key

View File

@@ -95,7 +95,7 @@ macro_rules! database_test {
db.drop_database().await;
#[allow(clippy::redundant_closure_call)]
(|$db: $crate::Database| $test)(db.clone()).await;
std::boxed::Box::pin((|$db: $crate::Database| $test)(db.clone())).await;
db.drop_database().await
};