Add interrupt signal handling for graceful server shutdown

develop
Nick 'MorpheusXAUT' Müller 2 years ago
parent 759e4c3711
commit 407f817c8d
No known key found for this signature in database

@ -28,8 +28,24 @@ app.use((err, req: Request, res: Response, next: NextFunction) => {
nodesched.scheduleJob('regenerate data', '*/30 * * * * *', wxService.wrappedGenerateData)
wxService.wrappedGenerateData();
app.listen(PORT, () => {
const server = app.listen(PORT, () => {
console.log(
`application is listening on port ${PORT}`,
);
});
const shutdown = (signal: string) => {
console.log(`${signal} signal received. Shutting down.`);
server.close((err) => {
if (err) {
console.error(`Failed to shut down server gracefully: ${err}`);
process.exit(1);
}
console.log('Server closed');
process.exit(0);
});
};
process.on('SIGTERM', () => shutdown('SIGTERM'));
process.on('SIGINT', () => shutdown('SIGINT'));

Loading…
Cancel
Save