NO-JIRA use default GC for 'home' script

This commit is contained in:
Justin Bertram 2022-10-05 11:41:12 -05:00
parent 20fde76e99
commit de8e8d7d2c
No known key found for this signature in database
GPG Key ID: F41830B875BB8633
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ if [ -z "$ARTEMIS_HOME" ] ; then
fi
# Set Defaults JAVA_ARGS Properties if not already set: this allow specific artemis commands to override default JVM configuration
if [ -z "${JAVA_ARGS}" ]; then JAVA_ARGS="-XX:+UseParallelGC -Xms512M -Xmx1024M"; fi
if [ -z "${JAVA_ARGS}" ]; then JAVA_ARGS="-Xms512M -Xmx1024M"; fi
CLASSPATH="$ARTEMIS_HOME/lib/artemis-boot.jar"
# OS specific support.

View File

@ -45,7 +45,7 @@ echo.
:RUN_JAVA
rem "Set Defaults."
if "%JAVA_ARGS%" == "" set JAVA_ARGS=-XX:+UseParallelGC -Xms512M -Xmx1024M
if "%JAVA_ARGS%" == "" set JAVA_ARGS=-Xms512M -Xmx1024M
rem "Create full JVM Args"
set JVM_ARGS=%JAVA_ARGS%