diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2015-04-24 13:09:47 +0200 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2015-05-07 18:16:16 +0200 |
commit | 375eb7583334f231c27420c80b1b074e0cc554fe (patch) | |
tree | f5df25507bbe8b84cb0a90a190aedf40a01cf0d2 /ipalib/plugins | |
parent | 7d10547ae3098b96762846ff36e813042a503d59 (diff) | |
download | freeipa-375eb7583334f231c27420c80b1b074e0cc554fe.tar.gz freeipa-375eb7583334f231c27420c80b1b074e0cc554fe.tar.xz freeipa-375eb7583334f231c27420c80b1b074e0cc554fe.zip |
use Connectible.disconnect() instead of .destroy_connection()
Destroy connection is an internal function of Connectible and therefore
it should not be used directly.
https://fedorahosted.org/freeipa/ticket/4991
Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
Diffstat (limited to 'ipalib/plugins')
-rw-r--r-- | ipalib/plugins/user.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/user.py b/ipalib/plugins/user.py index dea946e35..ab259cda3 100644 --- a/ipalib/plugins/user.py +++ b/ipalib/plugins/user.py @@ -852,7 +852,7 @@ class user_status(LDAPQuery): count += 1 if host != api.env.host: - other_ldap.destroy_connection() + other_ldap.disconnect() return dict(result=entries, count=count, |