feat: uncomment worker process

This commit is contained in:
karishmas6
2024-10-22 18:26:58 +05:30
parent 0c45a62d6c
commit c413b8eced

View File

@@ -81,6 +81,6 @@ server.listen(SERVER_PORT, async () => {
process.on('SIGINT', () => { process.on('SIGINT', () => {
console.log('Main app shutting down...'); console.log('Main app shutting down...');
//workerProcess.kill(); workerProcess.kill();
process.exit(); process.exit();
}); });