HOST · Error
E_CF_HTTP
Cloudflare returned a non-OK HTTP status.
— · Resolution
How to recover
Inspect `error.context.httpStatus` and the upstream message.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_CF_HTTP',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Inspect `error.context.httpStatus` and the upstream message.',
docs: 'https://openagentry.dev/errors/E_CF_HTTP',
});
The context field carries adapter-specific
detail (HTTP status, missing env-var names, validation issues). It
never contains secret values.
— · See also
Related codes from @openagentry/adapter-host-cloudflare
-
E_CF_AUTHCloudflare API token / account ID missing or rejected. -
E_CF_NOT_FOUNDCloudflare project, deployment, or domain not found. -
E_CF_NETWORKNetwork failure reaching Cloudflare. -
E_CF_RATE_LIMITEDCloudflare API rate limit reached. -
E_CF_PAGES_APICloudflare Pages-specific API error. -
E_CF_SCHEMAInput failed Zod validation.