This is an automated email from the ASF dual-hosted git repository. dcapwell pushed a commit to branch cep-15-accord in repository https://gitbox.apache.org/repos/asf/cassandra.git
The following commit(s) were added to refs/heads/cep-15-accord by this push: new 118535e499 Accord: Fix issue where 3 tests would crash consistently in CI 118535e499 is described below commit 118535e499856fb3009887f569e51a393fccf244 Author: David Capwell <dcapw...@apache.org> AuthorDate: Wed Apr 9 12:01:03 2025 -0700 Accord: Fix issue where 3 tests would crash consistently in CI patch by David Capwell; reviewed by Benedict Elliott Smith for CASSANDRA-20543 --- build.xml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build.xml b/build.xml index 0626418efe..116935d1fd 100644 --- a/build.xml +++ b/build.xml @@ -1313,9 +1313,8 @@ <macrodef name="testlist"> <attribute name="test.file.list"/> <sequential> - <condition property="maxMemory" value="8G" else="4G"> - <equals arg1="${test.classlistprefix}" arg2="distributed"/> - </condition> + <!-- CI normally runs in containers, so bumping this value is not always safe; bumping can cause the JVM to crash due to inability to allocate memory! All changes here must be coordinated with CI memory improvements --> + <property name="maxMemory" value="2G" /> <testmacrohelper inputdir="${test.dir}/${test.classlistprefix}" filelist="@{test.file.list}" exclude="**/*.java" timeout="${test.timeout}" maxmemory="${maxMemory}"> <jvmarg value="-Dlegacy-sstable-root=${test.data}/legacy-sstables"/> <jvmarg value="-Dinvalid-legacy-sstable-root=${test.data}/invalid-legacy-sstables"/> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org For additional commands, e-mail: commits-h...@cassandra.apache.org