Standard SIGINT/SIGTERM handlers that route to our `stop()` (direct mode).
()
| 486 | |
| 487 | /** Standard SIGINT/SIGTERM handlers that route to our `stop()` (direct mode). */ |
| 488 | private installSignalHandlers(): void { |
| 489 | process.on('SIGINT', () => this.stop()); |
| 490 | process.on('SIGTERM', () => this.stop()); |
| 491 | } |
| 492 | |
| 493 | /** |
| 494 | * PPID watchdog (#277) — direct mode only. Daemon mode is detached on purpose |
no test coverage detected