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();
process.on('SIGINT', () => {
console.log('Worker shutting down...');
process.exit();
});
// We dont need this right now
// process.on('SIGINT', () => {
// console.log('Worker shutting down...');
// process.exit();
// });
export { workflowQueue, worker };