[java-identity-provider] branch main updated: Fix (tested, but not committed) compile issue
Rod Widdowson
rdw at steadingsoftware.com
Mon Nov 10 19:40:21 UTC 2025
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
https://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=2357b7b241dcbc11c554f8144c7a398dca5649d8
The following commit(s) were added to refs/heads/main by this push:
new 2357b7b24 Fix (tested, but not committed) compile issue
2357b7b24 is described below
commit 2357b7b241dcbc11c554f8144c7a398dca5649d8
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Mon Nov 10 19:40:17 2025 +0000
Fix (tested, but not committed) compile issue
---
.../net/shibboleth/idp/installer/impl/InstalledMetadataParameters.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/InstalledMetadataParameters.java b/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/InstalledMetadataParameters.java
index f0d2079f9..180097d4d 100644
--- a/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/InstalledMetadataParameters.java
+++ b/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/InstalledMetadataParameters.java
@@ -109,7 +109,7 @@ public class InstalledMetadataParameters extends AbstractInitializableComponent
/** Setup services lists {@link #logoutServices} {#link {@link #ssoServices}, consulting {@link #contextPath}. */
private void setupSevices() {
- logoutServices = CollectionSupport.singletonList(
+ logoutServices = CollectionSupport.listOf(
new Pair<>("Redirect/", contextPath + "/profile/SAML2/SOAP/Redirect/SLO"),
new Pair<>("POST/", contextPath + "/profile/SAML2/POST/SLO"));
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list