[java-oidc-common] branch maint-3.3 updated: Fix misleading log message
Codeberg
noreply at shibboleth.net
Tue Aug 25 14:47:26 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch maint-3.3
in repository java-oidc-common.
View the commit online:
https://codeberg.org/Shibboleth/java-oidc-common/commit/c33574379153dc50ab9c1d1106b98f64db9dcbba
The following commit(s) were added to refs/heads/maint-3.3 by this push:
new c3357437 Fix misleading log message
c3357437 is described below
commit c33574379153dc50ab9c1d1106b98f64db9dcbba
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