You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 21, 2025. It is now read-only.
I would like to consider about use rabbitmq-cli-consumer as my consumer manager because i have RabbitMQ pool that have 200+ consumers on a single server.
But i need to be able to set a Consumer Tag on RabbitMQ when a consumer connects to it.
I just checked /consumer/consumer.go file and saw that on 38. line the consumer tag was passed as empty string like:
Hi
I would like to consider about use rabbitmq-cli-consumer as my consumer manager because i have RabbitMQ pool that have 200+ consumers on a single server.
But i need to be able to set a Consumer Tag on RabbitMQ when a consumer connects to it.
I just checked /consumer/consumer.go file and saw that on 38. line the consumer tag was passed as empty string like:
msgs, err := c.Channel.Consume(c.Queue, "", false, false, false, false, nil)
If it's possible to put a consumer tag via config or as a parameter would be perfect.