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

Enable connection pooling by default (JM-844).

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@5469 b35dd754-fafc-0310-a699-88a17e54d16e
parent e9e4371f
...@@ -122,7 +122,7 @@ public class LdapManager { ...@@ -122,7 +122,7 @@ public class LdapManager {
this.alternateBaseDN = JiveGlobals.getXMLProperty("ldap.alternateBaseDN", null); this.alternateBaseDN = JiveGlobals.getXMLProperty("ldap.alternateBaseDN", null);
this.nameField = JiveGlobals.getXMLProperty("ldap.nameField", "cn"); this.nameField = JiveGlobals.getXMLProperty("ldap.nameField", "cn");
this.emailField = JiveGlobals.getXMLProperty("ldap.emailField", "mail"); this.emailField = JiveGlobals.getXMLProperty("ldap.emailField", "mail");
this.connectionPoolEnabled = JiveGlobals.getXMLProperty("ldap.connectionPoolEnabled", false); this.connectionPoolEnabled = JiveGlobals.getXMLProperty("ldap.connectionPoolEnabled", true);
this.searchFilter = JiveGlobals.getXMLProperty("ldap.searchFilter"); this.searchFilter = JiveGlobals.getXMLProperty("ldap.searchFilter");
this.subTreeSearch = JiveGlobals.getXMLProperty("ldap.subTreeSearch", true); this.subTreeSearch = JiveGlobals.getXMLProperty("ldap.subTreeSearch", true);
this.groupNameField = JiveGlobals.getXMLProperty("ldap.groupNameField", "cn"); this.groupNameField = JiveGlobals.getXMLProperty("ldap.groupNameField", "cn");
......
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