JDK 7 requires minimum of 256k stack size, update scripts to set it, closes #1892.

This commit is contained in:
Shay Banon 2012-04-29 17:16:41 +03:00
parent b379225238
commit c56218a41f
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -24,7 +24,7 @@ if [ "x$ES_HEAP_NEWSIZE" != "x" ]; then
fi
# reduce the per-thread stack size
JAVA_OPTS="$JAVA_OPTS -Xss160k"
JAVA_OPTS="$JAVA_OPTS -Xss256k"
# Force the JVM to use IPv4 stack
# JAVA_OPTS="$JAVA_OPTS -Djava.net.preferIPv4Stack=true"