iceshrimp/packages/backend/src/queue/processors/noop.ts
2024-07-23 20:47:23 +02:00

5 lines
260 B
TypeScript

import Bull from "bull";
// Processor to be registered for jobs with __default__ (unnamed) handlers in queues that only have named handlers
// Prevents sporadic bogus jobs from clogging up the queues
export async function noop(_: Bull.Job): Promise<void> { }