On 09/02/2015 03:16 PM, Jan Cholasta wrote:
On 2.9.2015 14:51, Martin Basti wrote:


On 09/02/2015 02:32 PM, Jan Cholasta wrote:
Hi,

the attached patch fixes <https://fedorahosted.org/freeipa/ticket/5268>.

Honza




This patch needs a big rebase to ipa-4-2 branch

Patch attached.



Hello,

Two minors questions. LDAPClient close/__del__/__exit__ are now just resetting self._conn without disconnecting the connection. Only ldap2.close() disconnect the connection. Could it be a risk to see connection leaks with __del__ or __exit__ ?

Also in the fix there is:

@@ -118,10 +115,11 @@ class ldap2(CrudBackend, LDAPClient):
         if debug_level:
             _ldap.set_option(_ldap.OPT_DEBUG_LEVEL, debug_level)
- LDAPClient._connect(self)
-        conn = self._conn
+        client = LDAPClient(self.ldap_uri,
+                            force_schema_updates=self._force_schema_updates)
+        conn = client._conn


Is it the same as 'conn = client.conn()' ?

Thanks
thierry

-- 
Manage your subscription for the Freeipa-devel mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-devel
Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code

Reply via email to