Changeset 64:8c428bde178d

Show
Ignore:
Timestamp:
07/14/07 09:16:42 (3 years ago)
Author:
Allan Saddi <allan@saddi.com>
branch:
default
transplant_source:
����T �X��e\���� �6�
Message:

Prevent ThreadPool? inconsistences if an exception is actually raised.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • ChangeLog

    r63 r64  
     12007-07-14  Allan Saddi  <allan@saddi.com> 
     2 
     3        * Prevent ThreadPool inconsistences if an exception is 
     4          actually raised. Thanks to Tim Chen for the patch. 
     5 
    162007-05-17  Allan Saddi  <allan@saddi.com> 
    27 
  • flup/server/threadpool.py

    r6 r64  
    101101            self._lock.release() 
    102102 
    103             job.run() 
     103            try: 
     104                job.run() 
     105            except: 
     106                # FIXME: This should really be reported somewhere. 
     107                # But we can't simply report it to stderr because of fcgi 
     108                pass 
    104109 
    105110            self._lock.acquire()