Justin <justin.warken...@gmail.com> added the comment:

I guess I didn't really explain the issue much. The problem is that if the 
server receives say, 10 requests at once, and then forks a process for each, 
after those processes finish they will sit as zombies until process_request() 
is called again, which calls collect_children(). So that patch simply moves the 
call to collect_children() into the serve_forever() loop so that it doesn't 
leave zombies sitting around.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue11109>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to