Skip to content

Commit

Permalink
Bugfix spotted by Sakshi
Browse files Browse the repository at this point in the history
Signed-off-by: 1000TurquoisePogs <[email protected]>
  • Loading branch information
1000TurquoisePogs authored May 28, 2024
1 parent a0ee0bd commit 2305d68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ module.exports.isServerHttps = function(zoweConfig) {

function isClientAttls(zoweConfig) {
let clientGlobalAttls = zoweConfig.zowe.network?.client?.tls?.attls;
let clientLocalAttls zoweConfig.components['app-server'].zowe?.network?.client?.tls?.attls;
let clientLocalAttls = zoweConfig.components['app-server'].zowe?.network?.client?.tls?.attls;
let clientAttls = clientGlobalAttls || clientLocalAttls;
if ((clientGlobalAttls !== false) && (clientLocalAttls !== false) && (!clientAttls)) {
// If client attls not explicitly false OR truthy, have client follow server attls variable. it simplifies common case in which users want both.
Expand Down

0 comments on commit 2305d68

Please sign in to comment.