From: Bill Stoddard Date: Fri, 19 Oct 2001 20:30:16 +0000 (+0000) Subject: maxrequestsperchild should default to 0 on windows. X-Git-Tag: 2.0.27~75 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ae53a8f3d8ee554c965cbfabe1b4290c3185e1ed;p=apache maxrequestsperchild should default to 0 on windows. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91576 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/mpm_default.h b/server/mpm/winnt/mpm_default.h index 876503a47d..58275cfd8d 100644 --- a/server/mpm/winnt/mpm_default.h +++ b/server/mpm/winnt/mpm_default.h @@ -129,7 +129,7 @@ * the children don't die off. */ #ifndef DEFAULT_MAX_REQUESTS_PER_CHILD -#define DEFAULT_MAX_REQUESTS_PER_CHILD 10000 +#define DEFAULT_MAX_REQUESTS_PER_CHILD 0 #endif #endif /* AP_MPM_DEFAULT_H */