Skip to content

Commit

Permalink
Merge pull request #223 from zowe/v2.x/staging
Browse files Browse the repository at this point in the history
rc2
  • Loading branch information
1000TurquoisePogs authored Apr 21, 2022
2 parents d4c7379 + f0d5930 commit 48308a6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions bin/app-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ else
fi

if [ -z "$ZLUX_NO_LOGFILE" ]; then
__UNTAGGED_READ_MODE=V6 _BPX_JOBNAME=${ZOWE_PREFIX}DS1 ${NODE_BIN} --harmony ${ZOWE_LIB_DIR}/${ZLUX_SERVER_FILE} --config="${CONFIG_FILE}" "$@" 2>&1 | tee $ZWED_NODE_LOG_FILE
__UNTAGGED_READ_MODE=V6 _BPX_JOBNAME=${ZOWE_PREFIX}DS ${NODE_BIN} --harmony ${ZOWE_LIB_DIR}/${ZLUX_SERVER_FILE} --config="${CONFIG_FILE}" "$@" 2>&1 | tee $ZWED_NODE_LOG_FILE
else
__UNTAGGED_READ_MODE=V6 _BPX_JOBNAME=${ZOWE_PREFIX}DS1 ${NODE_BIN} --harmony ${ZOWE_LIB_DIR}/${ZLUX_SERVER_FILE} --config="${CONFIG_FILE}" "$@"
__UNTAGGED_READ_MODE=V6 _BPX_JOBNAME=${ZOWE_PREFIX}DS ${NODE_BIN} --harmony ${ZOWE_LIB_DIR}/${ZLUX_SERVER_FILE} --config="${CONFIG_FILE}" "$@"
echo "Ended with rc=$?"
fi

Expand Down
14 changes: 8 additions & 6 deletions bin/utils/convert-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,15 @@ export ZWES_ZIS_PARMLIB_MEMBER="ZWESIP00"



# For backwards compatible behavior, only set the instance ID if it is non-default
if [ -n "$ZOWE_INSTANCE" ]
# For backwards compatible behavior
if [ -n "$ZWE_zowe_rbacProfileIdentifier" ]
then
if [ "$ZOWE_INSTANCE" != "1" ]
then
export ZWED_instanceID=$ZOWE_INSTANCE
fi
export ZWED_instanceID=$ZWE_zowe_rbacProfileIdentifier
fi

if [ -n "$ZWE_zowe_cookieIdentifier" ]
then
export ZWED_cookieIdentifier=$ZWE_zowe_cookieIdentifier
fi

# shape old env vars into app-server compatible ones
Expand Down
2 changes: 1 addition & 1 deletion bin/zssServer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ fi
#Determined log file. Run zssServer.
export dir=`dirname "$0"`
cd $ZSS_SCRIPT_DIR
_BPX_SHAREAS=NO _BPX_JOBNAME=${ZOWE_PREFIX}SZ1 ./zssServer "${CONFIG_FILE}" 2>&1 | tee $ZWES_LOG_FILE
_BPX_SHAREAS=NO _BPX_JOBNAME=${ZOWE_PREFIX}SZ ./zssServer "${CONFIG_FILE}" 2>&1 | tee $ZWES_LOG_FILE
# This program and the accompanying materials are
# made available under the terms of the Eclipse Public License v2.0 which accompanies
# this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html
Expand Down

0 comments on commit 48308a6

Please sign in to comment.