Fix typo in JVM checker user help.

When checking the JVM currently running ES we provide the user with
help on which environment variable to use to disable the check in
case the check fails. The variable we point to however is the wrong
one.
This commit is contained in:
Isabel Drost-Fromm 2015-04-10 09:42:11 +02:00
parent 224c43564b
commit 5faac37900
1 changed files with 1 additions and 1 deletions

View File

@ -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.");
}