bump java7 stack size to 180; see #4457

This commit is contained in:
Jonathan Ellis 2012-08-22 10:34:42 -05:00
parent aa81f84c38
commit 8173c6f64a
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
1.1.5
* increase stack size under Java7 to 180K
* Log(info) schema changes (CASSANDRA-4547)

View File

@ -186,7 +186,7 @@ if [ "`uname`" = "Linux" ] ; then
# supported.
if startswith "$JVM_VERSION" '1.7.'
then
JVM_OPTS="$JVM_OPTS -Xss160k"
JVM_OPTS="$JVM_OPTS -Xss180k"
else
JVM_OPTS="$JVM_OPTS -Xss128k"
fi