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

8 lines
154 B
JavaScript
Raw Normal View History

2023-11-08 20:29:30 +08:00
process.on('SIGTERM', () => {
console.log('The service is about to shut down!');
// Finish any outstanding requests, then...
process.exit(0);
});