NO_CAPACITY

All compute servers are at capacity right now.

HTTP status: 503

Why this happens

All compute servers are at capacity right now.

How to recover

Retry shortly. Capacity is added continuously; status page tracks rolling availability.

Branching on this code

TypeScript
import { ApiError } from "@firecase/sdk";

try {
  await firecase.someCall();
} catch (e) {
  if (e instanceof ApiError && e.code === "NO_CAPACITY") {
    // recover here
  }
  throw e;
}