Browse Source

Gracefully stop streaming server (#4103)

pull/4/head
Nolan Lawson 6 years ago
committed by Eugen Rochko
parent
commit
3f82d8b979
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      streaming/index.js

+ 1
- 0
streaming/index.js 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) => {

Loading…
Cancel
Save