Management gui - The link to consumer connections does not work when consumers use AMQP 1.0 (RabbitMQ 4.3.6)
Author: Mott88Created Sep 18, 2026Updated Sep 18, 2026
Labelsbug
Describe the bug
The release notes for RabbitMQ 4.3.6 says: "Consumers on protocols without channels (for example, AMQP 1.0 and MQTT) now link directly to their connection in the management UI."
This does not seem to work for AMQP 1.0, and you get a ? inside the Owner column when looking at the consumers for a specific queue:
When looking at the response from the API call, I see that it returns the details below. The logic introduced in 4.3.6 expects a connection_name for the channel_details, but the channel_details is empty when the consumer use AMQP 1.0:
"consumer_details": [
{
"arguments": {},
"channel_details": {},
"ack_required": true,
"active": true,
"activity_status": "up",
"consumer_tag": "0",
"consumer_timeout": 300000,
"exclusive": false,
"prefetch_count": 0,
"queue": {
"name": "myqueue",
"vhost": "/"
}
}
],Reproduction steps
- Install RabbitMQ 4.3.6.
- Create an AMQP 1.0 consumer on a queue.
- Open the RabbitMQ management gui and click on that queue.
- Look at the table under Consumers.
Expected behavior
Expect a link to the connection that the consumer use inside the Owner column.
Additional context
No response
Source: rabbitmq/rabbitmq-server