From 4b19f710e1e594f8f835ee3f12e8879a857fc3df Mon Sep 17 00:00:00 2001 From: Lee Hsun Date: Tue, 30 Jan 2018 20:49:47 +0800 Subject: [PATCH] Set max_requests to 0 The value will always be overwritten by fpm_run(), and the default value there is 0 and not 500. --- sapi/fpm/fpm/fpm_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapi/fpm/fpm/fpm_main.c b/sapi/fpm/fpm/fpm_main.c index cd391606e1..2632f2aa58 100644 --- a/sapi/fpm/fpm/fpm_main.c +++ b/sapi/fpm/fpm/fpm_main.c @@ -1583,7 +1583,7 @@ int main(int argc, char *argv[]) void ***tsrm_ls; #endif - int max_requests = 500; + int max_requests = 0; int requests = 0; int fcgi_fd = 0; fcgi_request *request; -- 2.50.1