noodlefrenzy / node-amqp10

amqp10 is a promise-based, AMQP 1.0 compliant node.js client
MIT License
134 stars 56 forks source link

Queue not automatically created #359

Closed DominicBoettger closed 6 years ago

DominicBoettger commented 6 years ago

Hello.

When creating a receiver or sender the queue is not automatically created in service bus. Is there an option to do this? I used rabbit with amqplib before and it was possible to create the queues automatically.

Thanks Dominic

amarzavery commented 6 years ago

Nope. This package expects that the queue/topic, etc. is already created. You can create that from the portal. Or you can use the azure-arm-sb package to create the entities programmatically.

DominicBoettger commented 6 years ago

Hi

Thank you. That helped me a lot.

Best Dominic