Skip to content

Commit

Permalink
Small bugfix for big session renewal issue
Browse files Browse the repository at this point in the history
Signed-off-by: 1000TurquoisePogs <[email protected]>
  • Loading branch information
1000TurquoisePogs committed Aug 14, 2020
1 parent 82842b5 commit f4c0440
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to the Zlux Server Framework package will be documented in this file.
This repo is part of the app-server Zowe Component, and the change logs here may appear on Zowe.org in that section.

## 1.15.0

- Bugfix: Fixed desktop prompting for session renewal and failure due to sso-auth plugin incorrectly stating that session refresh is possible when using Zowe SSO. In reality, the SSO tokens are non-renewable with expiration after several hours, leading to a prompt to re-authenticate to continue using the Desktop. This bugfix should now allow for that behavior.

## 1.14.0

- Bugfix: Plugin default server config could not exist in plugins own directory, and had to exist in the instance
Expand Down
2 changes: 1 addition & 1 deletion plugins/sso-auth/lib/ssoAuth.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function SsoAuthenticator(pluginDef, pluginConf, serverConf, context) {
"canGetStatus": true,
"canGetCategories": true,
//when zosmf cookie becomes invalid, we can purge zss cookie even if it is valid to be consistent
"canRefresh": this.usingZss ? true : false,
"canRefresh": (this.usingZss && !this.usingSso) ? true : false,
"canAuthenticate": true,
"canAuthorize": true,
"canLogout": true,
Expand Down

0 comments on commit f4c0440

Please sign in to comment.