kubernetes-guide/codeblock/handle-sigterm/sigterm.js

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);
});