[java-shib-attribute] branch main updated: Raise log level on message.

Codeberg noreply at shibboleth.net
Thu Mar 12 12:26:06 UTC 2026


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

codeberg pushed a commit to branch main
in repository java-shib-attribute.

View the commit online:
https://codeberg.org/Shibboleth/java-shib-attribute/commit/615d277dc40a258f4e6e4b9233d746d45a91f8a4

The following commit(s) were added to refs/heads/main by this push:
     new 615d277dc Raise log level on message.
615d277dc is described below

commit 615d277dc40a258f4e6e4b9233d746d45a91f8a4
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Mar 12 08:25:34 2026 -0400

    Raise log level on message.
---
 .../config/AbstractMetadataDrivenConfigurationLookupStrategy.java       | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/shib-attribute-api/src/main/java/net/shibboleth/idp/attribute/config/AbstractMetadataDrivenConfigurationLookupStrategy.java b/shib-attribute-api/src/main/java/net/shibboleth/idp/attribute/config/AbstractMetadataDrivenConfigurationLookupStrategy.java
index 51146fd60..09f9bf49b 100644
--- a/shib-attribute-api/src/main/java/net/shibboleth/idp/attribute/config/AbstractMetadataDrivenConfigurationLookupStrategy.java
+++ b/shib-attribute-api/src/main/java/net/shibboleth/idp/attribute/config/AbstractMetadataDrivenConfigurationLookupStrategy.java
@@ -681,6 +681,8 @@ public abstract class AbstractMetadataDrivenConfigurationLookupStrategy<T> exten
         final List<AttributesMapContainer> containerList = input.get(AttributesMapContainer.class);
         if (null == containerList || containerList.isEmpty()) {
             return null;
+        } else if (containerList.size() > 1) {
+            LOG.error("Found multiple instances of AttributesMapContainer in metadata, using the first");
         }
         
         final AttributesMapContainer container = containerList.get(0);

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


More information about the commits mailing list