Hello,
I am using https://github.com/cdmbase/graphql-rabbitmq-subscriptions which uses this pubsub, and I noticed that when a client disconnects, the pubsub unsubscribes successfully, but only cleans the consumers, not the queues.

As seen on the picture above, RabbitMQ queues continue to stack, and it becomes problematic when we have thousands of users.
Is there a way to change this behavior ?
I was thinking about passing a autoDelete: true to the queues when created... But your opinion is very welcomed 😃