QuestDB JavaScript Client - v5.0.0
    Preparing search index...

    Interface QwpUpgradeErrorDetails

    interface QwpUpgradeErrorDetails {
        cause?: unknown;
        closeCode?: number;
        kind: QwpUpgradeErrorKind;
        retryable?: boolean;
        serverRole?: string;
        serverZone?: string;
        statusCode?: number;
        statusMessage?: string;
        timeoutPhase?: QwpUpgradeTimeoutPhase;
        tryNextEndpoint?: boolean;
        url?: string | URL;
    }
    Index

    Properties

    cause?: unknown
    closeCode?: number
    retryable?: boolean

    Whether a later retry against the configured endpoint set may recover.

    serverRole?: string
    serverZone?: string
    statusCode?: number
    statusMessage?: string
    timeoutPhase?: QwpUpgradeTimeoutPhase
    tryNextEndpoint?: boolean

    Whether failover code should try another endpoint before surfacing this.

    url?: string | URL