Commit bf25d2e5 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Don't attempt to pool authentication requests -- doing so won't work anyway.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@5396 b35dd754-fafc-0310-a699-88a17e54d16e
parent 588cfa95
......@@ -292,9 +292,6 @@ public class LdapManager {
if (ldapDebugEnabled) {
env.put("com.sun.jndi.ldap.trace.ber", System.err);
}
if (connectionPoolEnabled) {
env.put("com.sun.jndi.ldap.connect.pool", "true");
}
if (followReferrals) {
env.put(Context.REFERRAL, "follow");
}
......@@ -316,7 +313,7 @@ public class LdapManager {
}
}
catch (Exception e) {
Log.error(e);
Log.error(e);
}
try {
// See if the user authenticates.
......@@ -339,9 +336,6 @@ public class LdapManager {
if (ldapDebugEnabled) {
env.put("com.sun.jndi.ldap.trace.ber", System.err);
}
if (connectionPoolEnabled) {
env.put("com.sun.jndi.ldap.connect.pool", "true");
}
if (followReferrals) {
env.put(Context.REFERRAL, "follow");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment