From 948e90b95aa71a635fe5933e6e4a01823db6ac86 Mon Sep 17 00:00:00 2001 From: Mara Sophie Grosch Date: Fri, 11 Nov 2022 12:03:18 +0100 Subject: [feature] S3: add config flag to proxy S3 media (#1014) * S3: add config value "proxy" for not redirecting Signed-off-by: Mara Sophie Grosch * S3: document new config value "proxy" * S3: add new config value "proxy" to test scripts Signed-off-by: Mara Sophie Grosch --- testrig/storage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testrig/storage.go') diff --git a/testrig/storage.go b/testrig/storage.go index a5f2ccfd0..657c81161 100644 --- a/testrig/storage.go +++ b/testrig/storage.go @@ -48,7 +48,7 @@ func NewS3Storage() gtsstorage.Driver { if err != nil { panic(err) } - return gtsstorage.NewS3(mc, os.Getenv("GTS_STORAGE_S3_BUCKET")) + return gtsstorage.NewS3(mc, os.Getenv("GTS_STORAGE_S3_BUCKET"), false) } // StandardStorageSetup populates the storage with standard test entries from the given directory. -- cgit v1.2.3