Patch fpm-keepalive-accounting for FPM related Bug #69860
Patch version 2015-06-17 11:00 UTC
Return to Bug #69860 |
Download this patch
Patch Revisions:
Developer: dyeldandi@gramant.ru
diff --git a/sapi/fpm/fpm/fastcgi.c b/sapi/fpm/fpm/fastcgi.c
index 8b081b2..955ed60 100644
--- a/sapi/fpm/fpm/fastcgi.c
+++ b/sapi/fpm/fpm/fastcgi.c
@@ -919,6 +919,7 @@ int fcgi_accept_request(fcgi_request *req)
return -1;
}
if (fcgi_read_request(req)) {
+ fpm_request_reading_headers();
#ifdef _WIN32
if (is_impersonate && !req->tcp) {
pipe = (HANDLE)_get_osfhandle(req->fd);
|