Skip to content

Commit

Permalink
Merge pull request #438 from zowe/users/jstruga/merge-staging-to-rc
Browse files Browse the repository at this point in the history
merge staging to rc
  • Loading branch information
timgerstel authored Jul 14, 2022
2 parents 11a3472 + fc73745 commit 0e38457
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: '[Prep 2] Setup Node'
uses: actions/setup-node@v2
with:
node-version: 16
node-version: 16.15.0

- name: '[Prep 3] Setup jFrog CLI'
uses: jfrog/setup-jfrog-cli@v2
Expand Down
1 change: 0 additions & 1 deletion lib/apiml.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,6 @@ ApimlConnector.prototype = {

registerMainServerInstance() {
const overrideOptions = Object.assign({},this.tlsOptions);
//TODO FIXME We should not be referring to env var this far in the code.
const zweVerifyCerts = process.env['ZWE_zowe_verifyCertificates'];
if (!zweVerifyCerts || zweVerifyCerts=='DISABLED') {
//Keeping these certs causes an openssl error 46, unknown cert error in a dev environment
Expand Down
2 changes: 1 addition & 1 deletion lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ module.exports.makeRemoteUrl = function(destination, req, serverConfig) {
if (destination.includes('ZWE_EXTERNAL_PORT')) {
if (process.env.ZWE_zowe_externalPort) {
zoweExternalPort = process.env.ZWE_zowe_externalPort;
} if (process.env.ZWE_EXTERNAL_PORT) {
} else if (process.env.ZWE_EXTERNAL_PORT) {
zoweExternalPort = process.env.ZWE_EXTERNAL_PORT;
} else if (serverConfig.node.mediationLayer && serverConfig.node.mediationLayer.server && serverConfig.node.mediationLayer.server.gatewayPort) {
zoweExternalPort = serverConfig.node.mediationLayer.server.gatewayPort;
Expand Down

0 comments on commit 0e38457

Please sign in to comment.