Sanity Library Reference Docs
    Preparing search index...

    How long the engine waits between two attempts. delayMs is that wait in milliseconds: 'fixed' waits it every time, 'exponential' doubles it per attempt already made (delayMs, then 2 × delayMs, then 4 × delayMs).

    type EffectRetryBackoff = {
        delayMs: number;
        kind: "fixed" | "exponential";
    }
    Index

    Properties

    Properties

    delayMs: number
    kind: "fixed" | "exponential"