Update to handle SIGQUIT

This commit is contained in:
Wu Cheng-Han 2017-03-22 15:26:35 +08:00
parent b17c2404b1
commit 0bcd83576f

1
app.js
View file

@ -672,3 +672,4 @@ function handleTermSignals () {
}
process.on('SIGINT', handleTermSignals)
process.on('SIGTERM', handleTermSignals)
process.on('SIGQUIT', handleTermSignals)