[java-shib-attribute] branch main updated: JSATTR-51 CI tests fail on RHEL for java versions Amazon21 and Redhat-17
Codeberg
noreply at shibboleth.net
Sat Aug 8 12:51:21 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/148e00f3346a99b4d3abe93cc8d314fd562b66cc
The following commit(s) were added to refs/heads/main by this push:
new 148e00f33 JSATTR-51 CI tests fail on RHEL for java versions Amazon21 and Redhat-17
148e00f33 is described below
commit 148e00f3346a99b4d3abe93cc8d314fd562b66cc
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Sat Aug 8 13:49:44 2026 +0100
JSATTR-51 CI tests fail on RHEL for java versions Amazon21 and Redhat-17
https://shibboleth.atlassian.net/browse/JSATTR-51
Add all the missing tear down bean processors to everywhere a service is
declared (and in particular to idp-1676 which shared a port with the
failing test
---
.../idp/attribute/resolver/failfast/attributeResolverBeans.xml | 2 ++
.../attribute/resolver/failfast/attributeResolverBeansDefaultFF.xml | 2 ++
.../net/shibboleth/idp/attribute/resolver/spring/idp-1676-service.xml | 3 +++
.../net/shibboleth/idp/attribute/resolver/spring/mapperTest.xml | 3 ++-
.../shibboleth/idp/attribute/resolver/spring/propertyFileService.xml | 2 ++
.../test/resources/net/shibboleth/idp/saml/attribute/impl/service.xml | 3 ++-
6 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/failfast/attributeResolverBeans.xml b/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/failfast/attributeResolverBeans.xml
index 2579da926..103c12686 100644
--- a/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/failfast/attributeResolverBeans.xml
+++ b/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/failfast/attributeResolverBeans.xml
@@ -45,4 +45,6 @@
id="ShibbolethAttributeResolver"/>
</constructor-arg>
</bean>
+ <!-- Trigger service tear down -->
+ <bean id="teardownHelper" class="net.shibboleth.shared.spring.config.BeanTearDownProcessor"/>
</beans>
\ No newline at end of file
diff --git a/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/failfast/attributeResolverBeansDefaultFF.xml b/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/failfast/attributeResolverBeansDefaultFF.xml
index ad1055444..df0a4ce3d 100644
--- a/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/failfast/attributeResolverBeansDefaultFF.xml
+++ b/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/failfast/attributeResolverBeansDefaultFF.xml
@@ -44,4 +44,6 @@
id="ShibbolethAttributeResolver"/>
</constructor-arg>
</bean>
+ <!-- Trigger service tear down -->
+ <bean id="teardownHelper" class="net.shibboleth.shared.spring.config.BeanTearDownProcessor"/>
</beans>
\ No newline at end of file
diff --git a/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/idp-1676-service.xml b/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/idp-1676-service.xml
index 1b0890814..578b0788b 100644
--- a/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/idp-1676-service.xml
+++ b/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/idp-1676-service.xml
@@ -47,4 +47,7 @@
</util:list>
</property>
</bean>
+ <!-- Trigger service tear down -->
+ <bean id="teardownHelper" class="net.shibboleth.shared.spring.config.BeanTearDownProcessor"/>
+
</beans>
diff --git a/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/mapperTest.xml b/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/mapperTest.xml
index fb29f6db6..a368a9700 100644
--- a/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/mapperTest.xml
+++ b/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/mapperTest.xml
@@ -60,5 +60,6 @@
class="net.shibboleth.idp.saml.attribute.transcoding.AbstractSAML1AttributeTranscoder.NamingFunction" />
</constructor-arg>
</bean>
-
+ <!-- Trigger service tear down -->
+ <bean id="teardownHelper" class="net.shibboleth.shared.spring.config.BeanTearDownProcessor"/>
</beans>
\ No newline at end of file
diff --git a/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/propertyFileService.xml b/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/propertyFileService.xml
index 0227c397f..0f83b677f 100644
--- a/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/propertyFileService.xml
+++ b/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/propertyFileService.xml
@@ -38,4 +38,6 @@
</util:list>
</property>
</bean>
+ <!-- Trigger service tear down -->
+ <bean id="teardownHelper" class="net.shibboleth.shared.spring.config.BeanTearDownProcessor"/>
</beans>
\ No newline at end of file
diff --git a/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/saml/attribute/impl/service.xml b/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/saml/attribute/impl/service.xml
index 8033dcb31..0365ac65e 100644
--- a/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/saml/attribute/impl/service.xml
+++ b/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/saml/attribute/impl/service.xml
@@ -59,5 +59,6 @@
</props>
</property>
</bean>
-
+ <!-- Trigger service tear down -->
+ <bean id="teardownHelper" class="net.shibboleth.shared.spring.config.BeanTearDownProcessor"/>
</beans>
\ No newline at end of file
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list