diff options
| author | Robert Godfrey <rgodfrey@apache.org> | 2014-07-21 18:47:06 +0000 |
|---|---|---|
| committer | Robert Godfrey <rgodfrey@apache.org> | 2014-07-21 18:47:06 +0000 |
| commit | 629595fd01a0839a225afdfbb91e4771096a42e0 (patch) | |
| tree | 1125fa966ca626edfd77f587ab3abea47aedffe9 /qpid/java | |
| parent | a48dc09434db43d6ec044214f8d41197d885d30b (diff) | |
| download | qpid-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.java | 2 |
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 { |
