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