From 337568ea43c5013319e3a0f6e19e924b7af9c781 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Thu, 9 Feb 2006 15:16:45 +0000 Subject: [PATCH] OK, if we have already seen headers, it's a smashing good idea to go ahead and pass the data along. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/fcgi-proxy-dev@376318 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/mod_proxy_fcgi.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/proxy/mod_proxy_fcgi.c b/modules/proxy/mod_proxy_fcgi.c index 496facec213..fb23d74ff52 100644 --- a/modules/proxy/mod_proxy_fcgi.c +++ b/modules/proxy/mod_proxy_fcgi.c @@ -682,6 +682,11 @@ recv_again: * to persist. */ apr_bucket_setaside(b, setaside_pool); } + } else { + rv = ap_pass_brigade(r->output_filters, ob); + if (rv != APR_SUCCESS) { + break; + } } /* If we didn't read all the data go back and get the -- 2.47.2