Skip to content

Commit

Permalink
fix(platform-setup): remove unused JVM_OPTS (#3184)
Browse files Browse the repository at this point in the history
Fix a regression from #3180
Also, this environment variable was never used or documented
  • Loading branch information
akantcheff authored Oct 3, 2024
1 parent 6bcb65f commit d4dee9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/platform-setup/src/main/standalone/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ check_vendor_supported "$BONITA_DATABASE"
BONITA_BDM_DATABASE=$(grep '^bdm.db.vendor=' database.properties | sed -e 's/bdm.db.vendor=//g')
check_vendor_supported "$BONITA_BDM_DATABASE"

"${JAVA_EXE}" -cp "${BASEDIR}:${CFG_FOLDER}:${INITIAL_CFG_FOLDER}${LIBS_CP}" "${JVM_OPTS}" \
"${JAVA_EXE}" -cp "${BASEDIR}:${CFG_FOLDER}:${INITIAL_CFG_FOLDER}${LIBS_CP}" \
-Dsysprop.bonita.db.vendor="${BONITA_DATABASE}" \
-Dsysprop.bonita.bdm.db.vendor="${BONITA_BDM_DATABASE}" \
org.bonitasoft.platform.setup.PlatformSetupApplication "$@"
Expand Down

0 comments on commit d4dee9e

Please sign in to comment.