Changes between Initial Version and Version 1 of Ticket #8335


Ignore:
Timestamp:
Jan 20, 2011, 11:25:56 PM (13 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8335 – Description

    initial v1  
    11When multiple connections are made concurrently, an error may occur:
    22
     3{{{
    34"AttributeError: 'bool' object has no attribute 'compare_s'". This is most likely a concurrency issue. Without delving too deep into the source code, changing the following line seems to fix the issue:
     5}}}
    46
     7{{{
     8#!patch
    59--- api.py      2010-12-23 10:41:01.000000000 +0100
    610+++ api.py.orig 2010-11-16 16:31:34.000000000 +0100
     
    1822+            self._ds = False
    1923             return False
    20      
    21      # Following methods moved from LdapUtil since many of them really need access to the connection
     24
     25             # Following methods moved from LdapUtil since many of them really need access to the connection
     26}}}