Repository: cxf-fediz Updated Branches: refs/heads/master 87f3aa68a -> a98f14434
Don't check for token expiry in the core Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/a98f1443 Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/a98f1443 Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/a98f1443 Branch: refs/heads/master Commit: a98f1443401159585f817dc437057bc6cbc11005 Parents: 87f3aa6 Author: Colm O hEigeartaigh <[email protected]> Authored: Wed Oct 7 11:23:45 2015 +0100 Committer: Colm O hEigeartaigh <[email protected]> Committed: Wed Oct 7 11:23:45 2015 +0100 ---------------------------------------------------------------------- .../apache/cxf/fediz/core/processor/FederationProcessorImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/a98f1443/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/FederationProcessorImpl.java ---------------------------------------------------------------------- diff --git a/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/FederationProcessorImpl.java b/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/FederationProcessorImpl.java index f828bbf..25f715e 100644 --- a/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/FederationProcessorImpl.java +++ b/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/FederationProcessorImpl.java @@ -170,7 +170,7 @@ public class FederationProcessorImpl extends AbstractFedizProcessor { lifeTime = processLifeTime(lifetimeElem); } - if (config.isDetectExpiredTokens() && lifeTime != null) { + if (lifeTime != null) { Date currentDate = new Date(); if (currentDate.after(lifeTime.getExpires())) { LOG.warn("RSTR Lifetime expired");
