()
| 678 | /* istanbul ignore next */ |
| 679 | function configureListeners(parseServer) { |
| 680 | const handleShutdown = function () { |
| 681 | process.stdout.write('Termination signal received. Shutting down.'); |
| 682 | parseServer.handleShutdown(); |
| 683 | }; |
| 684 | process.on('SIGTERM', handleShutdown); |
| 685 | process.on('SIGINT', handleShutdown); |
| 686 | } |
nothing calls this directly
no test coverage detected