Re: [Freeipa-devel] [PATCH] 823 ipaldap: raise DatabaseError on unbind if disconnected

2015-04-23 Thread Jan Cholasta
Dne 23.4.2015 v 22:18 Nathaniel McCallum napsal(a): On Thu, 2015-04-23 at 14:12 +0200, Petr Vobornik wrote: On 04/23/2015 12:24 PM, Petr Vobornik wrote: If unbind was called when disconnected it raised: AttributeError: 'NoneType' object has no attribute 'unbind_s' AttributeError is not a p

Re: [Freeipa-devel] [PATCH] 823 ipaldap: raise DatabaseError on unbind if disconnected

2015-04-23 Thread Nathaniel McCallum
On Thu, 2015-04-23 at 14:12 +0200, Petr Vobornik wrote: > On 04/23/2015 12:24 PM, Petr Vobornik wrote: > > If unbind was called when disconnected it raised: > >AttributeError: 'NoneType' object has no attribute 'unbind_s' > > > > AttributeError is not a public error and therefore it prevented

Re: [Freeipa-devel] user-friendly 'IPA internal error' message

2015-04-23 Thread Petr Spacek
On 23.4.2015 14:10, Simo Sorce wrote: > On Thu, 2015-04-23 at 07:28 +0200, Jan Cholasta wrote: >> Dne 22.4.2015 v 15:32 Simo Sorce napsal(a): >>> On Wed, 2015-04-22 at 09:59 +0200, Jan Cholasta wrote: Dne 22.4.2015 v 09:05 Petr Spacek napsal(a): > Hello, > > looking at freeipa-user

Re: [Freeipa-devel] [PATCH 0042] Make lint work on Fedora 22.

2015-04-23 Thread David Kupka
On 04/13/2015 01:23 PM, David Kupka wrote: On 04/10/2015 02:55 PM, Simo Sorce wrote: On Fri, 2015-04-10 at 12:55 +0200, Lukas Slebodnik wrote: On (08/04/15 08:53), Simo Sorce wrote: On Wed, 2015-04-08 at 10:22 +0200, David Kupka wrote: On 04/06/2015 02:48 PM, Simo Sorce wrote: On Mon, 2015-0

Re: [Freeipa-devel] [PATCH] 823 ipaldap: raise DatabaseError on unbind if disconnected

2015-04-23 Thread Petr Vobornik
On 04/23/2015 12:24 PM, Petr Vobornik wrote: If unbind was called when disconnected it raised: AttributeError: 'NoneType' object has no attribute 'unbind_s' AttributeError is not a public error and therefore it prevented ldap2.destroy_connection() to be called multiple times. fixes: https://

Re: [Freeipa-devel] user-friendly 'IPA internal error' message

2015-04-23 Thread Simo Sorce
On Thu, 2015-04-23 at 07:28 +0200, Jan Cholasta wrote: > Dne 22.4.2015 v 15:32 Simo Sorce napsal(a): > > On Wed, 2015-04-22 at 09:59 +0200, Jan Cholasta wrote: > >> Dne 22.4.2015 v 09:05 Petr Spacek napsal(a): > >>> Hello, > >>> > >>> looking at freeipa-users list, following kind of conversation is

Re: [Freeipa-devel] [PATCHES] 0688-0689 Remove Editable DN and DN component classes

2015-04-23 Thread Jan Cholasta
Dne 20.4.2015 v 18:16 Petr Viktorin napsal(a): On 04/20/2015 05:19 PM, Jan Cholasta wrote: Dne 20.4.2015 v 17:13 Petr Viktorin napsal(a): On 04/20/2015 10:24 AM, Jan Cholasta wrote: Dne 16.4.2015 v 14:35 Petr Viktorin napsal(a): On 04/16/2015 09:04 AM, Jan Cholasta wrote: Hi, Dne 10.4.2015

Re: [Freeipa-devel] user-friendly 'IPA internal error' message

2015-04-23 Thread Martin Kosek
On 04/22/2015 04:47 PM, Simo Sorce wrote: > On Wed, 2015-04-22 at 17:16 +0300, Alexander Bokovoy wrote: >> On Wed, 22 Apr 2015, Rob Crittenden wrote: >>> Jan Cholasta wrote: Dne 22.4.2015 v 09:05 Petr Spacek napsal(a): > Hello, > > looking at freeipa-users list, following kind of c

Re: [Freeipa-devel] [PATCHES 0227-0229] Server upgrade: introduce ipa-server-upgrade command

2015-04-23 Thread Martin Basti
On 21/04/15 10:31, Martin Basti wrote: On 21/04/15 08:12, Jan Cholasta wrote: Hi, Dne 15.4.2015 v 16:26 Martin Basti napsal(a): https://fedorahosted.org/freeipa/ticket/4904 Patches attached. Also ipa-upgradeconfig part is called as a subprocess. This will be removed after installer modificat

[Freeipa-devel] [PATCH] 823 ipaldap: raise DatabaseError on unbind if disconnected

2015-04-23 Thread Petr Vobornik
If unbind was called when disconnected it raised: AttributeError: 'NoneType' object has no attribute 'unbind_s' AttributeError is not a public error and therefore it prevented ldap2.destroy_connection() to be called multiple times. fixes: https://fedorahosted.org/freeipa/ticket/4991 Note: thi