Sort of. As you noted, you can use them locally, but then you can't connect to any remote resources
Sort of. As you noted, you can use them locally, but then you can't connect to any remote resources
q.send fails silently. 2 is never printed and I get no errors.





leading option for it.q.sendYour worker has access to the following bindings:
- KV Namespaces:
- xxxx: xxxx
- Queues:
- TREASURY_QUEUE: dev-treasury-queue try {
console.log(1);
const q = queue.factory(c);
console.log(1.2);
await q.send(item);
console.log(2);
} catch (error) {
console.log(3);
console.log(error);
}