Interface HttpRetryOptions

HTTP retry options to be used in each of the requests.

interface HttpRetryOptions {
    attempts?: number;
}

Properties

Properties

attempts?: number

Maximum number of attempts, including the original request. If 0 or 1, it means no retries. If not specified, default to 5.