On Feb 9, 2012, at 11:22 AM, Ruediger Pluem wrote:
> 
>> Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c
>> URL: 
>> http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c?rev=1242351&r1=1242350&r2=1242351&view=diff
>> ==============================================================================
>> --- httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c (original)
>> +++ httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c Thu Feb  9 15:07:22 2012
>> @@ -188,7 +188,7 @@ static apr_status_t send_data(proxy_conn
>>     while (to_write) {
>>         apr_size_t n = 0;
>>         rv = apr_socket_sendv(s, vec + offset, nvec - offset, &n);
>> -        if (rv != APR_SUCCESS) {
>> +        if ((rv != APR_SUCCESS) && !APR_STATUS_IS_EAGAIN(rv)) {
>>             break;
>>         }
>>         if (n > 0) {
>> 
> 
> How is this related to the log message and the query string issue?
> 

Ugg... good catch. This should not have been included in
the commit since it was something I was testing based on an
Email from Jim Riggs.

Reply via email to