diegosouzapw/OmniRoute · error · Error
Volcano console cookie or csrfToken is missing — re-bind the
Error message
Volcano console cookie or csrfToken is missing — re-bind the plan
What it means
Error "Volcano console cookie or csrfToken is missing — re-bind the plan" thrown in diegosouzapw/OmniRoute.
Source
Thrown at src/lib/providers/volcenginePlanModelDiscovery.ts:353
}
return out;
}
/**
* Fetch the live model list for a Volcano Ark plan subscription using the
* 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`
);View on GitHub (pinned to a179ffed5b)
When it happens
Trigger: Thrown at src/lib/providers/volcenginePlanModelDiscovery.ts:353 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/24db50e055b6659c.
Report an issue: GitHub.