workers-help
pages-help
general-help
durable-objects
workers-and-pages-discussions
pages-discussions
wrangler
coding-help
kv
🦀rust-on-workers
miniflare
stream
general-discussions
functions
zaraz
⚡instant-logs
email-routing
r2
pubsub-beta
analytics-engine
d1-database
queues
workers-for-platforms
workerd-runtime
web3
🤖turnstile
radar
web-research
logs-engine
cloudflare-go
terraform-provider-cloudflare
workers-ai
browser-rendering-api
logs-and-analytics
next-on-pages
cloudflare-ai
build-caching-beta
hyperdrive
vectorize
ai-gateway
python-workers-beta
vitest-integration-beta
workers-observability
workflows
vite-plugin
Direct connection to Postgres DB with SSL enabled (for Rust worker)?
tokio-postgres
, as follows:
```
let conn_str = env.secret("DB_CONN_STR");
let config = tokio_postgres::Config::from_str(conn_str)?;...Looking for feedback on a WAF-false-positive workaround with a Worker
- Fields like
html_body
, image
, compose_cc
often trigger false-positives.- We do want WAF Managed Rules on the rest of the form (To/From/Subject/etc). ...
Node.JS Compatibility Error...

responseStreamDisconnected errors when making 6+ sub requests in worker
ctx.waitUntil()
API to make sub requests to send metrics/logs to DataDog, and when there are 6 or more requests, the request/response that is being returned is truncated. When looking at real-time worker logs, the outcome field is set to "outcome": "responseStreamDisconnected",
. There are no other errors that are present.
The format we are using to send metrics is ctx.waitUntil(async function() { return await fetch(...)});
. The individual requests all function correctly, and I can reproduce this error by enabling any one of them, but if they are all enabled together, an error occured.
We have the following wrangler.toml
config:...Durable Object console logs on the dashboard
Deployment on Workers build goes fine, but waits until it timeouts

Requests from Cloudflare Workers to external API result to 520
I can't add my domain

Cloudflare node version change
I have tried to set the NODE_VERSION 20.9.0 in the env form, still it is responding...

CF workers w/ hono-openapi deploy randomly failing with error code 10002
cacheEverything: true vs Cf-Cache-Status: DYNAMIC
override_existing_dns_record
already has externally managed DNS records (A, CNAME, etc). Either delete them, try a different hostname, or use the option 'override_existing_dns_record' to override.i tried to find any information regarding override_existing_dns_record but didn't find any documentation regarding that https://developers.cloudflare.com/search/?query=override_existing_dns_record...
How to redefine types generated by `wrangler types`
wrangler dev
generates
```ts
declare namespace Cloudflare {
interface Env {...Queue "send" method hangs, binding is set it up and queue is exist.
env.QUEUE.send(message);
hangs in worker. but sending manual message over dashboard to queue just works fine. what may be the issue?
In local everything is fine, in production, when pushing manual message through dashboard to the queue everything also just works fine, and queueHandler picks the message as it should be, but when it comes to sending message from worker to queue with send() method it hangs forever.
binding is surely in the settings and I call exactly how the binding is set it up via env
, so it is env.EMAIL_QUEUE.send()
in my case....How to use vercel/og to generate open graph images?
@cloudflare/pages-plugin-vercel-og
for pages project but didn't found the example to genrate image using workers. When I install this package on a worker project, it throw any wasm
error.
Any suggestion how to generate og images on workers?...
Attached Debugger to Worker Process?
TypeError: Customizing inspector host is not supported with vitest-pool-workers....
Update name in Wrangler configuration file to match deployed Worker #1
How to stream responses and return a known content length?
Transfer-Encoding: chunked
and removes the Content-Length
header to conform to the http spec.
There's a great http client (object_store) I'd like to support with this proxy, but it requires content length headers. When i asked there about transfer encoding chunked support they said nope (https://github.com/apache/arrow-rs-object-store/issues/340#issuecomment-2849485808). Any suggestions?...Email Routing - Forwarding to multiple recipients