feat: rm system interruption logic

This commit is contained in:
Rohit
2025-01-26 23:47:10 +05:30
parent fd17167d53
commit 791bd3df5c

View File

@@ -67,9 +67,11 @@ async function jobCounts() {
jobCounts(); jobCounts();
process.on('SIGINT', () => { // We dont need this right now
console.log('Worker shutting down...');
process.exit(); // process.on('SIGINT', () => {
}); // console.log('Worker shutting down...');
// process.exit();
// });
export { workflowQueue, worker }; export { workflowQueue, worker };