[java-identity-provider] branch main updated: JSPROF-14 Tolerate gaps in resource-related module properties
Codeberg
noreply at shibboleth.net
Fri Sep 18 09:35:35 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
https://codeberg.org/Shibboleth/java-identity-provider/commit/c7ef307d8851fb2234985d3b34185664a4584ad9
The following commit(s) were added to refs/heads/main by this push:
new c7ef307d8 JSPROF-14 Tolerate gaps in resource-related module properties
c7ef307d8 is described below
commit c7ef307d8851fb2234985d3b34185664a4584ad9
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Fri Sep 18 10:35:09 2026 +0100
JSPROF-14 Tolerate gaps in resource-related module properties
https://shibboleth.atlassian.net/browse/JSPROF-14
Stop using an inline constant String and replace with the correct
(albeit deprecated) constant.
A real-soon-now commit will remove theuse of the deprecated constant.
---
.../net/shibboleth/idp/installer/plugin/impl/PluginInstallerCLI.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/PluginInstallerCLI.java b/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/PluginInstallerCLI.java
index 655d53dc2..ee2531a36 100644
--- a/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/PluginInstallerCLI.java
+++ b/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/PluginInstallerCLI.java
@@ -469,7 +469,7 @@ public final class PluginInstallerCLI extends AbstractIdPHomeAwareCommandLine<Pl
final Enumeration<Object> en = props.keys();
while (en.hasMoreElements()) {
final String key = (String)en.nextElement();
- if (key.endsWith(".versions")) {
+ if (key.endsWith(InstallableComponentSupport.AVAILABLE_VERSIONS_PROPERTY_SUFFIX)) {
final String pluginId = key.substring(0, key.length()-9);
assert pluginId != null;
final InstallableComponentInfo info = new PluginInfo(pluginId, props);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list