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

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

commit 9d6f88b1103a7ec1122c759780ee4f41d3b02ff9
Author: Matthieu Baechler <[email protected]>
AuthorDate: Mon Feb 10 10:05:31 2020 +0100

    JAMES-3028 avoid OOM when running MemoryDumbBlobStoreTest
---
 server/blob/blob-memory/pom.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/server/blob/blob-memory/pom.xml b/server/blob/blob-memory/pom.xml
index 7d5e709..c28af44 100644
--- a/server/blob/blob-memory/pom.xml
+++ b/server/blob/blob-memory/pom.xml
@@ -62,5 +62,18 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <argLine>-Xms1024m -Xmx2048m</argLine>
+                    <reuseForks>true</reuseForks>
+                    
<forkedProcessTimeoutInSeconds>7200</forkedProcessTimeoutInSeconds>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 
 </project>
\ No newline at end of file


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

Reply via email to