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:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=9b70cbc01292f166b6897176cf97dc4c2a7ad657
The following commit(s) were added to refs/heads/main by this push:
new 9b70cbc01 IDP-2056 Incorrect logging in V4Install
9b70cbc01 is described below
commit 9b70cbc01292f166b6897176cf97dc4c2a7ad657
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Fri Dec 16 13:33:55 2022 +0000
IDP-2056 Incorrect logging in V4Install
https://shibboleth.atlassian.net/browse/IDP-2056
Fix logging when we are creating the sealer (Do not pretent it is the backchanenel kesystore).
---
.../src/main/java/net/shibboleth/idp/installer/V4Install.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/idp-installer/src/main/java/net/shibboleth/idp/installer/V4Install.java b/idp-installer/src/main/java/net/shibboleth/idp/installer/V4Install.java
index 6ef6b7905..754521dca 100644
--- a/idp-installer/src/main/java/net/shibboleth/idp/installer/V4Install.java
+++ b/idp-installer/src/main/java/net/shibboleth/idp/installer/V4Install.java
@@ -747,8 +747,7 @@ public class V4Install extends AbstractInitializableComponent {
generator.setVersionFile(versionFile.toFile());
generator.setKeyAlias(installerProps.getSealerAlias());
generator.setKeystorePassword(installerProps.getSealerPassword());
- log.info("Creating backchannel keystore, CN = {} URI = {}, keySize={}",
- installerProps.getHostName(), installerProps.getSubjectAltName(),installerProps.getKeySize());
+ log.info("Creating Sealer KeyStore");
try {
generator.changeKey();
} catch (final Exception e) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.