You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2022/10/05 16:41:49 UTC

[activemq-artemis] branch main updated: NO-JIRA use default GC for 'home' script

This is an automated email from the ASF dual-hosted git repository.

jbertram pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new de8e8d7d2c NO-JIRA use default GC for 'home' script
de8e8d7d2c is described below

commit de8e8d7d2cc6175acb50491b2d1e46217b17fb08
Author: Justin Bertram <jb...@apache.org>
AuthorDate: Wed Oct 5 11:41:12 2022 -0500

    NO-JIRA use default GC for 'home' script
---
 artemis-distribution/src/main/resources/bin/artemis     | 2 +-
 artemis-distribution/src/main/resources/bin/artemis.cmd | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/artemis-distribution/src/main/resources/bin/artemis b/artemis-distribution/src/main/resources/bin/artemis
index 7bc8329c1b..c7076c64a2 100755
--- a/artemis-distribution/src/main/resources/bin/artemis
+++ b/artemis-distribution/src/main/resources/bin/artemis
@@ -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.
diff --git a/artemis-distribution/src/main/resources/bin/artemis.cmd b/artemis-distribution/src/main/resources/bin/artemis.cmd
index 7d6452f122..fd8bb93118 100755
--- a/artemis-distribution/src/main/resources/bin/artemis.cmd
+++ b/artemis-distribution/src/main/resources/bin/artemis.cmd
@@ -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%