Returned when a server-side problem is caused by scaling infrastructure resources.

The client application should retry the request with exponential backoff up to a point where further delay is unacceptable.
interface BadGatewayError {
    code: "BadGateway";
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

code: "BadGateway"
message: string

Plain text description of the error.

Generated using TypeDoc