Skip to content

Commit ab92936

Browse files
committed
Revert back to prev. maxXmx
1 parent 785ad2a commit ab92936

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

substratevm/src/com.oracle.svm.driver/src/com/oracle/svm/driver/NativeImage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,7 @@ private static long getPhysicalMemorySize() {
17311731

17321732
protected String getXmxValue(int maxInstances) {
17331733
Long memMax = Long.divideUnsigned(Long.divideUnsigned(getPhysicalMemorySize(), 10) * 8, maxInstances);
1734-
String maxXmx = "15g";
1734+
String maxXmx = "14g";
17351735
if (Long.compareUnsigned(memMax, SubstrateOptionsParser.parseLong(maxXmx)) >= 0) {
17361736
return maxXmx;
17371737
}

0 commit comments

Comments
 (0)