Skip to content

Commit eec5721

Browse files
committed
Merge branch 'fix-startnm-script-error' into 'main'
Correct startNodeManager.sh NODEMGR_JAVA_OPTIONS error See merge request weblogic-cloud/weblogic-kubernetes-operator!4743 (cherry picked from commit 771d76b) 658f0ca8 fix script error when NODEMGR_JAVA_OPTIONS is set with multiple parameters
1 parent 714a44c commit eec5721

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

operator/src/main/resources/scripts/startNodeManager.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ export NODEMGR_HOME="${NODEMGR_HOME?}"
322322
export DOMAIN_HOME="${DOMAIN_HOME?}"
323323

324324
# Apply JAVA_OPTIONS to Node Manager if NODEMGR_JAVA_OPTIONS not specified
325-
if [ -z ${NODEMGR_JAVA_OPTIONS} ]; then
325+
if [ -z "${NODEMGR_JAVA_OPTIONS}" ]; then
326326
NODEMGR_JAVA_OPTIONS="${JAVA_OPTIONS}"
327327
fi
328328

0 commit comments

Comments
 (0)