[java-shib-attribute] branch main updated: Fix log message when returning cached results.
Scott Cantor
cantor.2 at osu.edu
Tue Jan 28 14:25:35 UTC 2025
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-shib-attribute.
View the commit online:
http://git.shibboleth.net/view/?p=java-shib-attribute.git;a=commit;h=b4910b2ce861d518b6faccc9fd85cb77d9e63a73
The following commit(s) were added to refs/heads/main by this push:
new b4910b2ce Fix log message when returning cached results.
b4910b2ce is described below
commit b4910b2ce861d518b6faccc9fd85cb77d9e63a73
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Jan 28 09:25:28 2025 -0500
Fix log message when returning cached results.
---
.../idp/attribute/resolver/dc/impl/AbstractSearchDataConnector.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/shib-attribute-resolver-impl/src/main/java/net/shibboleth/idp/attribute/resolver/dc/impl/AbstractSearchDataConnector.java b/shib-attribute-resolver-impl/src/main/java/net/shibboleth/idp/attribute/resolver/dc/impl/AbstractSearchDataConnector.java
index 04a6df9ef..84bc569cb 100644
--- a/shib-attribute-resolver-impl/src/main/java/net/shibboleth/idp/attribute/resolver/dc/impl/AbstractSearchDataConnector.java
+++ b/shib-attribute-resolver-impl/src/main/java/net/shibboleth/idp/attribute/resolver/dc/impl/AbstractSearchDataConnector.java
@@ -203,7 +203,7 @@ public abstract class AbstractSearchDataConnector<T1 extends ExecutableSearch,T2
} else if (resolvedAttributes.isEmpty()){
log.debug("{} Cache key found empty (negative) result", getLogPrefix());
} else {
- log.debug("{} Cache key returned resolved attributes {}", getLogPrefix());
+ log.debug("{} Cache key returned resolved attributes {}", getLogPrefix(), resolvedAttributes);
}
} else {
log.debug("No cache key returned, skipping check for cached results");
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list