summaryrefslogtreecommitdiffstats
path: root/ipaserver/plugins
diff options
context:
space:
mode:
authorMartin Basti <mbasti@redhat.com>2015-03-25 15:34:16 +0100
committerJan Cholasta <jcholast@redhat.com>2015-04-02 12:26:04 +0000
commitb92136cba287e38d9c2f41c3163f5a6b0b62ca17 (patch)
tree10d4633cc4ef9fb53847c4c82f1a0812da574b73 /ipaserver/plugins
parentc311af06f60cfdb73be9c0aecb9ddc559db1a055 (diff)
downloadfreeipa-b92136cba287e38d9c2f41c3163f5a6b0b62ca17.tar.gz
freeipa-b92136cba287e38d9c2f41c3163f5a6b0b62ca17.tar.xz
freeipa-b92136cba287e38d9c2f41c3163f5a6b0b62ca17.zip
Fix ldap2 shared connection
Since API is not singleton anymore, ldap2 connections should not be shared by default. https://fedorahosted.org/freeipa/ticket/4904 Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Diffstat (limited to 'ipaserver/plugins')
-rw-r--r--ipaserver/plugins/ldap2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/plugins/ldap2.py b/ipaserver/plugins/ldap2.py
index 3211b3390..fd4ed2990 100644
--- a/ipaserver/plugins/ldap2.py
+++ b/ipaserver/plugins/ldap2.py
@@ -61,7 +61,7 @@ class ldap2(LDAPClient, CrudBackend):
LDAP Backend Take 2.
"""
- def __init__(self, shared_instance=True, ldap_uri=None, base_dn=None,
+ def __init__(self, shared_instance=False, ldap_uri=None, base_dn=None,
schema=None):
self.__ldap_uri = None