summaryrefslogtreecommitdiff
path: root/qpid/java/broker-plugins/management-http
diff options
context:
space:
mode:
authorRobert Gemmell <robbie@apache.org>2013-03-10 22:30:01 +0000
committerRobert Gemmell <robbie@apache.org>2013-03-10 22:30:01 +0000
commit2b8753f4bb75b8378853e86e68b66cdfc9342c82 (patch)
tree87b8437f9d82e163e2933e0acff6ea34c0b46412 /qpid/java/broker-plugins/management-http
parente49bbdff59a7ed6d82e5015a8760c1d1248981b2 (diff)
downloadqpid-python-2b8753f4bb75b8378853e86e68b66cdfc9342c82.tar.gz
QPID-4390: misc logging related changes
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1454938 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/broker-plugins/management-http')
-rw-r--r--qpid/java/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/HttpManagement.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/qpid/java/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/HttpManagement.java b/qpid/java/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/HttpManagement.java
index 8fa9a59038..903d322508 100644
--- a/qpid/java/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/HttpManagement.java
+++ b/qpid/java/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/HttpManagement.java
@@ -320,20 +320,20 @@ public class HttpManagement extends AbstractPluginAdapter
{
if (keyStorePath == null)
{
- throw new RuntimeException("Management SSL keystore path not defined, unable to start SSL protected HTTP connector");
+ throw new RuntimeException("SSL keystore path not defined, unable to start HTTPS connector");
}
if (password == null)
{
- throw new RuntimeException("Management SSL keystore password, unable to start SSL protected HTTP connector");
+ throw new RuntimeException("SSL keystore password not defined, unable to start HTTPS connector");
}
File ksf = new File(keyStorePath);
if (!ksf.exists())
{
- throw new RuntimeException("Cannot find management SSL keystore file: " + ksf);
+ throw new RuntimeException("Cannot find SSL keystore file for HTTPS management: " + ksf);
}
if (!ksf.canRead())
{
- throw new RuntimeException("Cannot read management SSL keystore file: " + ksf + ". Check permissions.");
+ throw new RuntimeException("Cannot read SSL keystore file for HTTPS management: " + ksf + ". Check permissions.");
}
}