aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2021-10-27 10:23:37 +0200
committerHarald Musum <musum@yahooinc.com>2021-10-27 10:23:37 +0200
commit745908b0531588af65f203af01bff63d01e39ff7 (patch)
tree3d6ec698701cbab093108bed93466ad3d7cf7bff /config-model/src/test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java
parentd42a7641bfd6eb7d7384a396870e64c71b75e7bf (diff)
Stop using XX:+UseOSErrorReporting, not supported in newer JDKs
Removed in JDK 16, reported to only be working on Windows as well: https://bugs.java.com/bugdatabase/view_bug.do?bug_id=8255571
Diffstat (limited to 'config-model/src/test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java')
-rwxr-xr-xconfig-model/src/test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-model/src/test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java b/config-model/src/test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java
index 322b97355e9..7190a7d4db1 100755
--- a/config-model/src/test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java
+++ b/config-model/src/test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java
@@ -136,7 +136,7 @@ public class ContainerClusterTest {
private void verifyJvmArgs(boolean isHosted, boolean hasDocproc, String expectedArgs, String jvmArgs) {
if (isHosted && hasDocproc) {
- String defaultHostedJVMArgs = "-XX:+UseOSErrorReporting -XX:+SuppressFatalErrorMessage";
+ String defaultHostedJVMArgs = "-XX:+SuppressFatalErrorMessage";
if ( ! "".equals(expectedArgs)) {
defaultHostedJVMArgs = defaultHostedJVMArgs + " ";
}