We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 785ad2a commit ab92936Copy full SHA for ab92936
substratevm/src/com.oracle.svm.driver/src/com/oracle/svm/driver/NativeImage.java
@@ -1731,7 +1731,7 @@ private static long getPhysicalMemorySize() {
1731
1732
protected String getXmxValue(int maxInstances) {
1733
Long memMax = Long.divideUnsigned(Long.divideUnsigned(getPhysicalMemorySize(), 10) * 8, maxInstances);
1734
- String maxXmx = "15g";
+ String maxXmx = "14g";
1735
if (Long.compareUnsigned(memMax, SubstrateOptionsParser.parseLong(maxXmx)) >= 0) {
1736
return maxXmx;
1737
}
0 commit comments