[java-identity-provider] branch main updated: IDP-2001 - Invalid minor version for plugins logged during IdP startup

Scott Cantor cantor.2 at osu.edu
Fri Sep 2 12:48:17 UTC 2022


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

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=e940fef4fb38a07d27235330aa44103977463a9e

The following commit(s) were added to refs/heads/main by this push:
     new e940fef4f IDP-2001 - Invalid minor version for plugins logged during IdP startup
e940fef4f is described below

commit e940fef4fb38a07d27235330aa44103977463a9e
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