(self)
| 202 | self.should_exit.set() |
| 203 | |
| 204 | def handle_hup(self) -> None: # pragma: py-win32 |
| 205 | logger.info("Received SIGHUP, restarting processes.") |
| 206 | self.restart_all() |
| 207 | |
| 208 | def handle_ttin(self) -> None: # pragma: py-win32 |
| 209 | logger.info("Received SIGTTIN, increasing the number of processes.") |
nothing calls this directly
no test coverage detected