[java-idp-oidc] 02/03: JOIDC-286 - Improve logging for expired sealed tokens
Codeberg
noreply at shibboleth.net
Mon Sep 14 14:26:07 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository java-idp-oidc.
View the commit online:
https://codeberg.org/Shibboleth/java-idp-oidc/commit/863e6f9bc96b6cb5a7de6cfe847e9f8f326d6207
commit 863e6f9bc96b6cb5a7de6cfe847e9f8f326d6207
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Mon Sep 14 17:22:49 2026 +0300
JOIDC-286 - Improve logging for expired sealed tokens
https://shibboleth.atlassian.net/browse/JOIDC-286
Simplify the logging for opaque PAR request_uri deserialization and add missing return statement
---
.../DefaultPushedAuthorizationRequestUriDeserializationFunction.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/profile/logic/DefaultPushedAuthorizationRequestUriDeserializationFunction.java b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/profile/logic/DefaultPushedAuthorizationRequestUriDeserializationFunction.java
index ff7b7466..1bf38f1c 100644
--- a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/profile/logic/DefaultPushedAuthorizationRequestUriDeserializationFunction.java
+++ b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/profile/logic/DefaultPushedAuthorizationRequestUriDeserializationFunction.java
@@ -161,7 +161,9 @@ public class DefaultPushedAuthorizationRequestUriDeserializationFunction
}
return result;
} catch (final DataExpiredException e) {
- log.info("The contents of the requst_uri has expired: {}", uri.toString(), e);
+ log.info("The opaque requst_uri has expired");
+ log.debug("Expired request_uri: {}", uri.toString(), e);
+ return null;
} catch (final DataSealerException e) {
log.debug("Could not decrypt the contents of the request_uri {}", uri.toString(), e);
return null;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list