Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to the ZSS package will be documented in this file.

## `3.4.0`
- Bugfix: Update the default IP address for ZSS in http mode to `0.0.0.0`, fixing errors on some systems where `127.0.0.1` caused connectivity issues. [[#797](https://github.com/zowe/zss/pull/797)]

## `3.3.0`
- Enhancement: Utility "zis-test" is now used to ensure that ZIS is running and accessible by Zowe before starting ZSS. (zowe/zss#764)
- Enhancement: Utility "bind-test" is now available in Zowe and used to validate if each Zowe server can succeed in binding to the user requested TCPIP port at each Zowe startup. (zowe/zss#764)
Expand Down
2 changes: 1 addition & 1 deletion c/zss.c
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ ZSS_LOGGING_COMPONENTS_MAP(zssLogComponents)
\"pluginsDir\": \"../defaults/plugins\", \
\"agent\": { \
\"http\": { \
\"ipAddresses\": [\"127.0.0.1\"], \
\"ipAddresses\": [\"0.0.0.0\"], \
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

\"port\": 7557 \
} \
}, \
Expand Down
Loading