Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove node validate script #324

Merged
merged 1 commit into from
Nov 5, 2024
Merged
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 Zlux App Server package will be documented in this file.

## v2.18.1
- Bugfix: app-server no longer causes Zowe to print "FSUM7422 node is not found" and "Node found in NODE_HOME" upon startup. This avoids confusion about if node requirements are met. (#324)

## v2.17.0
- Enhancement: app-server can now use Zowe's standardized and simplified AT-TLS configuration simply by toggling `zowe.network.server.tls.attls: true` or `components.app-server.zowe.network.server.tls.attls: true`. If you wish to control client tls separately from server tls, you can also use `zowe.network.client.tls.attls` or `components.app-server.zowe.network.client.tls.attls`. (#300) (#303)
- Enhancement: The app-server configure stage performance increased due to combining two seperate processes in this stage (plugins-init.js and initInstance.js) into one. (#304)
Expand Down
5 changes: 2 additions & 3 deletions bin/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ if [ -n "${ZWE_zowe_runtimeDirectory}" ]; then
# used for relativeTo plugins
export ZLUX_ROOT_DIR=$COMPONENT_HOME/share
else
# dev env
. ./validate.sh
COMPONENT_HOME=$(cd ../..; pwd)
# dev env
COMPONENT_HOME=$(cd ../..; pwd)

# used for relativeTo plugins
export ZLUX_ROOT_DIR=$COMPONENT_HOME
Expand Down
20 changes: 0 additions & 20 deletions bin/validate.sh

This file was deleted.

1 change: 0 additions & 1 deletion manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ commands:
install: share/zlux-app-server/bin/internal-install.sh
start: bin/start.sh
configure: bin/configure.sh
validate: bin/validate.sh
# we do not specify encoding here because its already tagged ascii
apimlServices:
dynamic:
Expand Down
Loading