Changeset 274

Show
Ignore:
Timestamp:
04/17/06 08:38:33 (3 years ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/branches/0.5/ChangeLog

    r268 r274  
     12006-04-17  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
     2 
     3        * cherokee/thread.c (process_active_connections): There was an 
     4        unhandler error case here. It was the source of some stability 
     5        problems detected in 0.5.1.  This problem was reported by Cesar 
     6        Fernandez and Rodolfo Pilas (thanks guys!) 
     7 
    182006-04-15  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
    29 
  • cherokee/branches/0.5/cherokee/thread.c

    r220 r274  
    959959                         * this error, the handler has to be changed 
    960960                         */ 
    961                         if ((http_type_300(conn->error_code) || http_type_400(conn->error_code)) && 
     961                        if ((http_type_300(conn->error_code) ||  
     962                             http_type_400(conn->error_code) || 
     963                             http_type_500(conn->error_code)) && 
    962964                            conn->handler && (!HANDLER_SUPPORT_ERROR(conn->handler))) 
    963965                        {