Reopen log files (equivalent to SIGUSR1). Returns: Dictionary with status
(self)
| 428 | return {"status": "reloading"} |
| 429 | |
| 430 | def reopen(self) -> dict: |
| 431 | """ |
| 432 | Reopen log files (equivalent to SIGUSR1). |
| 433 | |
| 434 | Returns: |
| 435 | Dictionary with status |
| 436 | """ |
| 437 | os.kill(self.arbiter.pid, signal.SIGUSR1) |
| 438 | return {"status": "reopening"} |
| 439 | |
| 440 | def shutdown(self, mode: str = "graceful") -> dict: |
| 441 | """ |
no outgoing calls