summaryrefslogtreecommitdiff
path: root/qpid/java
diff options
context:
space:
mode:
authorRobert Godfrey <rgodfrey@apache.org>2014-07-21 18:47:06 +0000
committerRobert Godfrey <rgodfrey@apache.org>2014-07-21 18:47:06 +0000
commit629595fd01a0839a225afdfbb91e4771096a42e0 (patch)
tree1125fa966ca626edfd77f587ab3abea47aedffe9 /qpid/java
parenta48dc09434db43d6ec044214f8d41197d885d30b (diff)
downloadqpid-python-629595fd01a0839a225afdfbb91e4771096a42e0.tar.gz
QPID-5768 : Fix error message
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1612382 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
-rw-r--r--qpid/java/broker-core/src/main/java/org/apache/qpid/server/security/auth/manager/SimpleLDAPAuthenticationManagerImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/broker-core/src/main/java/org/apache/qpid/server/security/auth/manager/SimpleLDAPAuthenticationManagerImpl.java b/qpid/java/broker-core/src/main/java/org/apache/qpid/server/security/auth/manager/SimpleLDAPAuthenticationManagerImpl.java
index 94c297d8db..c4109b4682 100644
--- a/qpid/java/broker-core/src/main/java/org/apache/qpid/server/security/auth/manager/SimpleLDAPAuthenticationManagerImpl.java
+++ b/qpid/java/broker-core/src/main/java/org/apache/qpid/server/security/auth/manager/SimpleLDAPAuthenticationManagerImpl.java
@@ -371,7 +371,7 @@ public class SimpleLDAPAuthenticationManagerImpl extends AbstractAuthenticationM
}
catch (NamingException e)
{
- throw new ServerScopedRuntimeException("Unable to establish anonymous connection to the ldap server at " + _providerUrl, e);
+ throw new ServerScopedRuntimeException("Unable to establish connection to the ldap server at " + _providerUrl, e);
}
finally
{