From: Aaron Bannert Date: Fri, 26 Apr 2002 05:12:29 +0000 (+0000) Subject: Some of these worker bugs may or may not be showstoppers, but I'll let X-Git-Tag: 2.0.36~76 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d95c1c8420cd0e4075ad007d3c00bbc158b49b2;p=apache Some of these worker bugs may or may not be showstoppers, but I'll let Striker decide that. I hope to have the top two of these finished in the next 24 hours, but the third I may need some help with. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94809 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/STATUS b/STATUS index 288caba44f..47cdfc3e72 100644 --- a/STATUS +++ b/STATUS @@ -1,5 +1,5 @@ APACHE 2.0 STATUS: -*-text-*- -Last modified at [$Date: 2002/04/25 17:29:19 $] +Last modified at [$Date: 2002/04/26 05:12:29 $] Release: @@ -82,6 +82,22 @@ CURRENT VOTES: RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP: + * The worker MPM's fdqueue needs to be turned back into a FIFO. + Status: Aaron volunteers. + + * The worker MPM needs to be able to gracelessly kill off its + children. The current proposal would have the worker keep + track of all currently accepted socket descriptors, and to + close them all as soon as the listener thread receives the + signal to shutdown. + Status: Aaron volunteers + + * The worker MPM should not accept more connections than it + currently has available workers. Instead, the listener thread + should block on a condition of the fdqueue such that it waits + until there are at least one idle worker before continuing + into the accept-loop. + * Incorrect Content-Range headers or invalid 416 HTTP responses if a filter such as INCLUDES changes the content length. It may happen only when there are multiple output brigades.