Bitbucket Data Center API Client
    Preparing search index...

    Interface RetryOptions

    Configures adaptive retry/backoff behaviour for 429 Too Many Requests responses.

    interface RetryOptions {
        maxDelayMs?: number;
        maxRetries?: number;
    }
    Index

    Properties

    maxDelayMs?: number

    Upper bound, in milliseconds, applied to the delay derived from the Retry-After header. Defaults to 30000.

    maxRetries?: number

    Maximum number of retry attempts on 429 responses. Defaults to 0 (retries disabled).