Skip to content

Commit

Permalink
Zowe Suite v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zowe-robot authored Apr 14, 2022
2 parents 0e988df + 5b4ff76 commit 316e75a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ All notable changes to the ZSS package will be documented in this file.

- Breaking change: Cookie name now has a suffix which includes the port or if in an HA instance, the HA ID.
- Enhancement: New configuration option that allows to run 64-bit ZSS

- Bugfix: Do not use "tee" when log destination is /dev/null

## `1.27.0`

Expand Down
15 changes: 11 additions & 4 deletions bin/zssServer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,18 @@ else
ZSS_SERVER="${ZSS_SERVER_31}"
fi

if [ -f "$CONFIG_FILE" ]
then
_BPX_SHAREAS=NO _BPX_JOBNAME=${ZOWE_PREFIX}SZ1 ${ZSS_SERVER} "${CONFIG_FILE}" 2>&1 | tee $ZWES_LOG_FILE
if [ -f "$CONFIG_FILE" ]; then
if [ "$ZWES_LOG_FILE" = "/dev/null" ]; then
_BPX_SHAREAS=NO _BPX_JOBNAME=${ZOWE_PREFIX}SZ1 ${ZSS_SERVER} "${CONFIG_FILE}" 2>&1
else
_BPX_SHAREAS=NO _BPX_JOBNAME=${ZOWE_PREFIX}SZ1 ${ZSS_SERVER} "${CONFIG_FILE}" 2>&1 | tee $ZWES_LOG_FILE
fi
else
_BPX_SHAREAS=NO _BPX_JOBNAME=${ZOWE_PREFIX}SZ1 ${ZSS_SERVER} 2>&1 | tee $ZWES_LOG_FILE
if [ "$ZWES_LOG_FILE" = "/dev/null" ]; then
_BPX_SHAREAS=NO _BPX_JOBNAME=${ZOWE_PREFIX}SZ1 ${ZSS_SERVER} 2>&1
else
_BPX_SHAREAS=NO _BPX_JOBNAME=${ZOWE_PREFIX}SZ1 ${ZSS_SERVER} 2>&1 | tee $ZWES_LOG_FILE
fi
fi
# This program and the accompanying materials are
# made available under the terms of the Eclipse Public License v2.0 which accompanies
Expand Down
2 changes: 1 addition & 1 deletion deps/zowe-common-c
Submodule zowe-common-c updated 1 files
+2 −3 c/bpxskt.c
2 changes: 1 addition & 1 deletion h/zis/server.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ typedef struct ZISServerAnchor_tag {

} ZISServerAnchor;

typedef __packed struct ZISServiceRouterData_tag {
typedef _Packed struct ZISServiceRouterData_tag {
char eyecatcher[8];
#define ZIS_SERVICE_ROUTER_EYECATCHER "ZISSREYE"
unsigned int version;
Expand Down

0 comments on commit 316e75a

Please sign in to comment.