Midday / apps /worker /src /config /job-options.ts
Jules
Final deployment with all fixes and verified content
c09f67c
import type { JobsOptions } from "bullmq";
/**
* Default job options for BullMQ jobs.
* Standard retry configuration: 3 attempts with exponential backoff.
*/
export const DEFAULT_JOB_OPTIONS: JobsOptions = {
attempts: 3,
backoff: {
type: "exponential",
delay: 1000,
},
};