[java-oidc-common] branch main updated: Fix misleading log message

Codeberg noreply at shibboleth.net
Fri Jul 31 11:46:40 UTC 2026


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

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

View the commit online:
https://codeberg.org/Shibboleth/java-oidc-common/commit/26358af3cc3c81355e3a53ae44da2896342d7e54

The following commit(s) were added to refs/heads/main by this push:
     new 26358af3 Fix misleading log message
26358af3 is described below

commit 26358af3cc3c81355e3a53ae44da2896342d7e54
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Fri Jul 31 12:46:31 2026 +0100

    Fix misleading log message
    
     - Because of the postProcess hook, the credentials do not have to come
    from the headers, they can come from anywhere in practice. So remove the
    misleading 'From JOSE headers' wording from the log message.
---
 .../security/credential/impl/BasicJOSEObjectCredentialResolver.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/oidc-common-crypto-impl/src/main/java/net/shibboleth/oidc/security/credential/impl/BasicJOSEObjectCredentialResolver.java b/oidc-common-crypto-impl/src/main/java/net/shibboleth/oidc/security/credential/impl/BasicJOSEObjectCredentialResolver.java
index 41b249c3..48a2a52a 100644
--- a/oidc-common-crypto-impl/src/main/java/net/shibboleth/oidc/security/credential/impl/BasicJOSEObjectCredentialResolver.java
+++ b/oidc-common-crypto-impl/src/main/java/net/shibboleth/oidc/security/credential/impl/BasicJOSEObjectCredentialResolver.java
@@ -96,7 +96,7 @@ public class BasicJOSEObjectCredentialResolver extends AbstractCriteriaFiltering
         // Extension point for subclasses
         postProcess(criteriaSet, joseObject, credentials);
         
-        log.debug("A total of {} credentials were resolved from the JOSE headers", credentials.size());
+        log.debug("A total of {} credential(s) were resolved", credentials.size());
         
         return credentials;
         

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


More information about the commits mailing list