This commit is contained in:
Maurus Decimus
2026-04-28 16:11:49 +02:00
parent c3366a91e7
commit ed849e86ba
31 changed files with 60 additions and 58 deletions

View File

@@ -256,6 +256,8 @@ impl TestServerBuilder {
}
pub async fn build_with_opts(mut self, init_store: bool) -> TestServer {
let _ = rustls::crypto::aws_lc_rs::default_provider().install_default();
if init_store {
// Register stores from environment
self.bootstrap.registry.insert_stores_from_env().await;

View File

@@ -102,7 +102,7 @@ fn build_blob_store(typ: BlobStoreType, path: &str) -> BlobStore {
match typ {
BlobStoreType::S3 => BlobStore::S3(S3Store {
access_key: "minioadmin".to_string().into(),
bucket: "tmp".into(),
bucket: "stalwart".into(),
region: S3StoreRegion::Custom(S3StoreCustomRegion {
custom_endpoint: "http://localhost:9000".into(),
custom_region: "eu-central-1".into(),