Author: rgodfrey
Date: Mon Jul 6 14:56:33 2015
New Revision: 1689421
URL: http://svn.apache.org/r1689421
Log:
QPID-6623 : [Java Broker] Log a warning when writing a new secret key file
Modified:
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/security/encryption/AESKeyFileEncrypterFactory.java
Modified:
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/security/encryption/AESKeyFileEncrypterFactory.java
URL:
http://svn.apache.org/viewvc/qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/security/encryption/AESKeyFileEncrypterFactory.java?rev=1689421&r1=1689420&r2=1689421&view=diff
==============================================================================
---
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/security/encryption/AESKeyFileEncrypterFactory.java
(original)
+++
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/security/encryption/AESKeyFileEncrypterFactory.java
Mon Jul 6 14:56:33 2015
@@ -129,6 +129,7 @@ public class AESKeyFileEncrypterFactory
File file = new File(fileLocation);
if(!file.exists())
{
+ LOGGER.warn("Configuration Encryption is enabled, but no
configuration secret was found. A new configuration secret will be created at
{}",fileLocation);
createAndPopulateKeyFile(file);
}
if(!file.isFile())
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]