I have a kit for sending messages to reliable queues from the server (NodeJS), and the client (application for Android) listens for messages in their respective queues (each Android device is looking for its corresponding queue, which is unique).
According to the RabbitMQ document, when we try to connect to a queue with an empty name (ie "), RabbitMQ generates a random queue with a name starting with" amq.gen- ". But where there is no client or server code, I see that I'm trying connect to the queue with an empty name, but still see how many random queues are generated.
Can someone help me figure out what other scripts might create random queues with the name "amq.gen - *"?
source share