()
| 591 | const gracePeriod = this._shutdownOptions.gracePeriod; |
| 592 | this._signalListener = async (signal: string) => { |
| 593 | const kill = () => { |
| 594 | this.removeSignalListener(); |
| 595 | process.kill(process.pid, signal); |
| 596 | }; |
| 597 | debugShutdown( |
| 598 | '[%s] Signal %s received for process %d', |
| 599 | this.name, |