8 lines
154 B
JavaScript
8 lines
154 B
JavaScript
|
process.on('SIGTERM', () => {
|
||
|
console.log('The service is about to shut down!');
|
||
|
|
||
|
// Finish any outstanding requests, then...
|
||
|
process.exit(0);
|
||
|
});
|
||
|
|