This is an automated email from the ASF dual-hosted git repository.

btellier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/james-project.git

commit bf92250a20cfbb6ece212d75dcc4d44202f5f52a
Author: Matthieu Baechler <[email protected]>
AuthorDate: Fri Feb 14 11:30:55 2020 +0100

    JAMES-3028 use file backend for cloudserver
---
 .../org/apache/james/blob/objectstorage/aws/DockerAwsS3Container.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/server/blob/blob-s3/src/test/java/org/apache/james/blob/objectstorage/aws/DockerAwsS3Container.java
 
b/server/blob/blob-s3/src/test/java/org/apache/james/blob/objectstorage/aws/DockerAwsS3Container.java
index 06d8e8d..7b44d07 100644
--- 
a/server/blob/blob-s3/src/test/java/org/apache/james/blob/objectstorage/aws/DockerAwsS3Container.java
+++ 
b/server/blob/blob-s3/src/test/java/org/apache/james/blob/objectstorage/aws/DockerAwsS3Container.java
@@ -43,10 +43,11 @@ public class DockerAwsS3Container {
         this.awsS3Container = new GenericContainer<>(AWS_S3_DOCKER_IMAGE);
         this.awsS3Container
             .withExposedPorts(AWS_S3_PORT)
-            .withEnv("S3BACKEND", "mem")
+            .withEnv("S3BACKEND", "file")
             .withEnv("SCALITY_ACCESS_KEY_ID", ACCESS_KEY_ID)
             .withEnv("SCALITY_SECRET_ACCESS_KEY", SECRET_ACCESS_KEY)
             .withEnv("LOG_LEVEL", "trace")
+            .withEnv("REMOTE_MANAGEMENT_DISABLE", "1")
             .waitingFor(Wait.forLogMessage(".*\"message\":\"server 
started\".*\\n", ONE_TIME));
     }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to