Merge pull request #30458 from overleaf/mj-git-bridge-local-swap

[git-bridge] Mock S3 locally with minio

GitOrigin-RevId: d56659d601e4450f69332202b86e61a443375101
This commit is contained in:
Mathias Jakobsen
2026-01-06 12:45:17 +00:00
committed by Copybot
parent 32845170ff
commit bf662f74f5
4 changed files with 46 additions and 13 deletions

View File

@@ -11,6 +11,7 @@ public class S3SwapStoreTest {
private static final String secret = null;
private static final String bucketName = "com.overleaf.testbucket";
private static final String region = "us-east-1";
private static final String endpoint = null;
private S3SwapStore s3;
@@ -20,7 +21,7 @@ public class S3SwapStoreTest {
s3 = null;
return;
}
s3 = new S3SwapStore(accessKey, secret, bucketName, region);
s3 = new S3SwapStore(accessKey, secret, bucketName, region, endpoint);
}
// @Ignore