This is an automated email from the ASF dual-hosted git repository.
hzlu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git
The following commit(s) were added to refs/heads/master by this push:
new fd6ca19 fix Github helix-core test running out of memory issue #1334 (#1335)
fd6ca19 is described below
commit fd6ca191fda3238151bf49221f2d131d79d906ea
Author: kaisun2000 <52840222+kaisun2000@users.noreply.github.com>
AuthorDate: Thu Sep 3 20:05:53 2020 -0700
fix Github helix-core test running out of memory issue #1334 (#1335)
Github run of helix-core can't be finished recently
due to out of memory issue. This config change hopefully fix
this issue.
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index c4a01ec..2f58992 100644
--- a/pom.xml
+++ b/pom.xml
@@ -735,7 +735,7 @@
See also: properties section and profiles section.
-->
<configuration>
- <argLine>-Xms1024m -Xmx1024m</argLine>
+ <argLine>-Xms4096m -Xmx4096m</argLine>
<suiteXmlFiles>
<suiteXmlFile>src/test/conf/testng.xml</suiteXmlFile>
</suiteXmlFiles>
|