forked from snxraven/LinkUp-P2P-Chat
Merge pull request 'Added graceful shutdown' (#8) from MiTask/LinkUp-P2P-Chat:main into main
Reviewed-on: snxraven/LinkUp-P2P-Chat#8 Perfecto
This commit is contained in:
commit
37ce0ff5bf
@ -15,8 +15,25 @@ class Client extends EventEmitter {
|
|||||||
this.setupSwarm();
|
this.setupSwarm();
|
||||||
|
|
||||||
process.on('exit', () => {
|
process.on('exit', () => {
|
||||||
|
console.log('EXIT signal received. Shutting down HyperSwarm...');
|
||||||
this.destroy();
|
this.destroy();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
process.on('SIGTERM', () => {
|
||||||
|
console.log('SIGTERM signal received. Shutting down HyperSwarm...');
|
||||||
|
this.destroy().then(() => {
|
||||||
|
console.log('HyperSwarm was shut down. Exiting the process with exit code 0.');
|
||||||
|
process.exit(0);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
process.on('SIGINT', () => {
|
||||||
|
console.log('SIGINT signal received. Shutting down HyperSwarm...');
|
||||||
|
this.destroy().then(() => {
|
||||||
|
console.log('HyperSwarm was shut down. Exiting the process with exit code 0.');
|
||||||
|
process.exit(0);
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
setupSwarm() {
|
setupSwarm() {
|
||||||
|
Loading…
Reference in New Issue
Block a user