jira.js
    Preparing search index...

    Interface RetryOptions

    interface RetryOptions {
        backoffFactor?: number;
        initialDelayMs?: number;
        maxAttempts?: number;
        retryRateLimit?: boolean;
    }
    Index
    backoffFactor?: number

    Exponential backoff multiplier. Default: 2.

    initialDelayMs?: number

    Delay before the first retry in milliseconds. Default: 1000.

    maxAttempts?: number

    Total number of attempts including the first. Default: 3.

    retryRateLimit?: boolean

    Also retry a 429, waiting out Retry-After when the API sent one. Off by default: a rate limit asks you to slow the whole client down, and retrying one call in place papers over that.