Gracefully stop streaming server (#4103)

This commit is contained in:
Nolan Lawson 2017-07-07 11:01:00 -07:00 committed by Eugen Rochko
parent 9fe6cfca48
commit 3f82d8b979
1 changed files with 1 additions and 0 deletions

View File

@ -467,6 +467,7 @@ const startWorker = (workerId) => {
const onExit = () => {
log.info(`Worker ${workerId} exiting, bye bye`);
server.close();
process.exit(0);
};
const onError = (err) => {