[java-oidc-common] branch main updated: JOIDC-114 - Produce WARN-log line if neither JWKSet nor JWK can be parsed.

Henri Mikkonen henri.mikkonen at iki.fi
Wed Jun 29 14:59:41 UTC 2022


This is an automated email from the git hooks/post-receive script.

hjmikkon pushed a commit to branch main
in repository java-oidc-common.

View the commit online:
http://git.shibboleth.net/view/?p=java-oidc-common.git;a=commit;h=85ccc17de8fef07eb77979951ffa7a81be679f75

The following commit(s) were added to refs/heads/main by this push:
     new 85ccc17  JOIDC-114 - Produce WARN-log line if neither JWKSet nor JWK can be parsed.
85ccc17 is described below

commit 85ccc17de8fef07eb77979951ffa7a81be679f75
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Wed Jun 29 17:58:43 2022 +0300

    JOIDC-114 - Produce WARN-log line if neither JWKSet nor JWK can be parsed.
    
    https://shibboleth.atlassian.net/browse/JOIDC-114
---
 .../oidc/metadata/keyinfo/ext/impl/provider/InlineJwksProvider.java      | 1 +
 1 file changed, 1 insertion(+)

diff --git a/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/keyinfo/ext/impl/provider/InlineJwksProvider.java b/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/keyinfo/ext/impl/provider/InlineJwksProvider.java
index f8a1cbf..1ed00d5 100644
--- a/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/keyinfo/ext/impl/provider/InlineJwksProvider.java
+++ b/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/keyinfo/ext/impl/provider/InlineJwksProvider.java
@@ -127,6 +127,7 @@ public class InlineJwksProvider extends AbstractKeyInfoProvider {
         if (jwk != null) {
             return Arrays.asList(jwk);
         }
+        log.warn("Could not parse neither JWKSet nor JWK from the given input {}", input);
         return null;
     }
     

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list