moresandeep commented on a change in pull request #274: KNOX-2212 - Token
permissiveness
URL: https://github.com/apache/knox/pull/274#discussion_r385336020
##########
File path:
gateway-server/src/main/java/org/apache/knox/gateway/services/token/impl/AliasBasedTokenStateService.java
##########
@@ -92,9 +93,17 @@ protected long getMaxLifetime(final String token) {
@Override
public long getTokenExpiration(final String token) throws
UnknownTokenException {
long expiration = 0;
-
- validateToken(token);
-
+ try {
+ validateToken(token);
+ } catch (final UnknownTokenException e) {
+ /* if token permissiveness is enabled we check JWT token expiration when
the token state is unknown */
+ if (permissiveFailureEnabled && StringUtils
+ .containsIgnoreCase(e.toString(), "Unknown token")) {
Review comment:
I see the confusion now, I started working on it before
"UnknownTokenException" was introduced so we have "IllegalArgumentException"
this is an artifact of that. I will change it.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services