Interface SupaworkerJobOptions

Individual jobs can have custom options that workers can use to override default behavior.

interface SupaworkerJobOptions {
    max_attempts?: number;
}

Properties

Properties

max_attempts?: number

The number of attempts to make on a job before marking it as failed.