Collect the zombie child processes regularly in the ForkingMixIn. service_actions is called in the BaseServer's serve_forever loop.
(self)
| 606 | self.collect_children() |
| 607 | |
| 608 | def service_actions(self): |
| 609 | """Collect the zombie child processes regularly in the ForkingMixIn. |
| 610 | |
| 611 | service_actions is called in the BaseServer's serve_forever loop. |
| 612 | """ |
| 613 | self.collect_children() |
| 614 | |
| 615 | def process_request(self, request, client_address): |
| 616 | """Fork a new subprocess to process the request.""" |
nothing calls this directly
no test coverage detected