Merge pull request #10525 from MaineC/bug-fix/JVM_Checker
Fix typo in JVM checker user help. When checking the JVM we provide the user with help on which environment variable to use to disable the check in case the check fails. Fixing the variable we point the user to - should be JAVA_OPTS
This commit is contained in:
commit
717d9ec1d0
|
@ -68,7 +68,7 @@ public class JVMCheck {
|
|||
if (workAround != null) {
|
||||
sb.append(System.lineSeparator());
|
||||
sb.append("If you absolutely cannot upgrade, please add ").append(workAround);
|
||||
sb.append(" to the JVM_OPTS environment variable.");
|
||||
sb.append(" to the JAVA_OPTS environment variable.");
|
||||
sb.append(System.lineSeparator());
|
||||
sb.append("Upgrading is preferred, this workaround will result in degraded performance.");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue