You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2013/03/19 17:56:42 UTC

svn commit: r1458407 - /httpd/httpd/trunk/modules/filters/mod_reqtimeout.c

Author: jim
Date: Tue Mar 19 16:56:41 2013
New Revision: 1458407

URL: http://svn.apache.org/r1458407
Log:
temp work-around... better ways to do this, but
let's use the websocket tunnel feedback to determine
what we need.

Modified:
    httpd/httpd/trunk/modules/filters/mod_reqtimeout.c

Modified: httpd/httpd/trunk/modules/filters/mod_reqtimeout.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/filters/mod_reqtimeout.c?rev=1458407&r1=1458406&r2=1458407&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/filters/mod_reqtimeout.c (original)
+++ httpd/httpd/trunk/modules/filters/mod_reqtimeout.c Tue Mar 19 16:56:41 2013
@@ -179,7 +179,7 @@ static apr_status_t reqtimeout_filter(ap
 
     /* connections can bypass the filter even if configured */
     if (apr_table_get(f->c->notes, "bypass-reqtimeout")) {
-        return APR_SUCCESS;
+        return ap_get_brigade(f->next, bb, mode, block, readbytes);
     }
 
     if (ccfg->in_keep_alive) {