Agenda - v6.0.0
    Preparing search index...

    Interface RetryDetails

    Details provided when a job is scheduled for retry

    interface RetryDetails {
        attempt: number;
        delay: number;
        error: Error;
        nextRunAt: Date;
    }
    Index

    Properties

    attempt: number

    The retry attempt number (1-based)

    delay: number

    Delay in milliseconds before the retry

    error: Error

    The error that caused the failure

    nextRunAt: Date

    When the retry will be executed