diegosouzapw/OmniRoute · error · Error

Volcano ${kind} plan unavailable${detected.error ? `: ${dete

Error message

Volcano ${kind} plan unavailable${detected.error ? `: ${detected.error}` : ""} — re-bind the plan

What it means

Error "Volcano ${kind} plan unavailable${detected.error ? `: ${detected.error}` : ""} — re-bind the plan" thrown in diegosouzapw/OmniRoute.

Source

Thrown at src/lib/providers/volcenginePlanModelDiscovery.ts:359

 * console cookie + csrf token stored on the connection's providerSpecificData.
 *
 * Verifies the plan subscription is still active (detectPlan) before listing,
 * so an expired/disabled plan returns a clear error instead of a stale/empty
 * catalog that would erase the user's synced models.
 */
export async function fetchVolcPlanModels(
  kind: VolcPlanKind,
  cookieHeader: string,
  csrfToken: string
): Promise<SyncedAvailableModelInput[]> {
  if (!cookieHeader || !csrfToken) {
    throw new Error("Volcano console cookie or csrfToken is missing — re-bind the plan");
  }

  // Validate the subscription/credentials are still live.
  const detected = await detectPlan(kind, cookieHeader, csrfToken);
  if (!detected.available) {
    throw new Error(
      `Volcano ${kind} plan unavailable${detected.error ? `: ${detected.error}` : ""} — re-bind the plan`
    );
  }

  const cfg = PLAN_DISCOVERY_CONFIG[kind];
  const payload: JsonRecord = { ...cfg.payload };
  if (cfg.requiresAccountId) {
    const accountId = extractAccountId(cookieHeader);
    if (accountId === null) {
      throw new Error(
        `Volcano ${kind} plan discovery requires AccountId, but none found in console cookie — re-bind the plan`
      );
    }
    payload.AccountId = accountId;
  }
  const result = await callConsoleApiDirect(
    cfg.action,
    payload,

View on GitHub (pinned to a179ffed5b)

When it happens

Trigger: Thrown at src/lib/providers/volcenginePlanModelDiscovery.ts:359 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of diegosouzapw/OmniRoute@a179ffed5b (2026-08-25). Data as JSON: /api/errors/618e1549bbdad750. Report an issue: GitHub.