is there a reason queues cant be created with capitals? all other bindings seem fine with them. 🤔
is there a reason queues cant be created with capitals? all other bindings seem fine with them. 

.send error today: Error: Queue send failed: ConflictConflict Error: Queue send failed: Internal Server Error occasionally on .send, which calling-worker-side retrying does not seem to fix

Network connection lost) - which is troubling since that is now lost payload..send does whatever it needs to do in tough situations to retry under the hood if necessary (like saving to disk when the network is down and retrying later)
.sendBatch() can send?Promise.allSettled inside the worker, for example.send.send.sendError: Queue send failed: ConflictConflictError: Queue send failed: Internal Server ErrorNetwork connection lost.sendBatch()Promise.allSettledasync function waitForAll(promises) {
await Promise.allSettled(
promises
.map(p => p.then(
(x) => x,
(e) => {
Sentry.captureException(e);
throw e;
})
)
);
// Not sure it is needed, it might not be needed
await Sentry.flush();
}
async queue(batch, env, ctx) {
try {
// Schedule sending events asynchronously
const eventsPromises = [
serviceOne.sendEvents(batch),
serviceTwo.sendEvents(batch)
];
// Wait event promises without blocking the response
ctx.waitUntil(waitForAll(eventsPromises));
} catch (error) {
// Errors occurred during event sending are already reported to Sentry by "waitAll" above.
// Here we are just reporting other errors if they are.
Sentry.captureException(error);
}
}