docs have a broken link https://developers.cloudflare.com/queues/reference/how-queues-works/#produce
docs have a broken link https://developers.cloudflare.com/queues/reference/how-queues-works/#producers

.sendBatch() can send?Promise.allSettled inside the worker, for examplewrangler deploying multiple times quickly with queue config changes, the queue consumer config (and producer) page would crash with internal issues, and if I reaccessed it, the data hadn't been updated.
Conflict or Internal Server Error prevent a .send call (over 9 million sends in that time)QUEUE.send occurs after the event returns(even though it is within a waitUntil...waitUntil to process the Webhook, then return a Response back basically instantlywaitUntil it basically returns a response first and then starts the rendering?.sendBatch()Promise.allSettledConflictInternal Server Error.sendQUEUE.send[[queues.producers]]
queue = "wow-cataclysm-auctions-queue"
binding = "QUEUE"ctx.waitUntil(someWorkFunction(data));
return new Response();