[java-identity-provider] branch maint-4 updated: IDP-2001 - Invalid minor version for plugins logged during IdP startup
Scott Cantor
cantor.2 at osu.edu
Fri Sep 2 12:47:30 UTC 2022
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch maint-4
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=ef79739d0b25051191620b8f7f809d24bb38d366
The following commit(s) were added to refs/heads/maint-4 by this push:
new ef79739d0 IDP-2001 - Invalid minor version for plugins logged during IdP startup
ef79739d0 is described below
commit ef79739d0b25051191620b8f7f809d24bb38d366
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Sep 2 08:47:27 2022 -0400
IDP-2001 - Invalid minor version for plugins logged during IdP startup
https://shibboleth.atlassian.net/browse/IDP-2001
---
.../java/net/shibboleth/idp/admin/impl/LogImplementationDetails.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-admin-impl/src/main/java/net/shibboleth/idp/admin/impl/LogImplementationDetails.java b/idp-admin-impl/src/main/java/net/shibboleth/idp/admin/impl/LogImplementationDetails.java
index 1b94fd067..ac697efd8 100644
--- a/idp-admin-impl/src/main/java/net/shibboleth/idp/admin/impl/LogImplementationDetails.java
+++ b/idp-admin-impl/src/main/java/net/shibboleth/idp/admin/impl/LogImplementationDetails.java
@@ -71,7 +71,7 @@ public final class LogImplementationDetails {
logger.info("Plugins:");
for (final IdPPlugin idpPlugin : plugins) {
logger.info("\t\t{} : v{}.{}.{}", idpPlugin.getPluginId(), idpPlugin.getMajorVersion(),
- idpPlugin.getMajorVersion(), idpPlugin.getPatchVersion());
+ idpPlugin.getMinorVersion(), idpPlugin.getPatchVersion());
}
}
Path idpHome;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list