Skip to content

Commit d0a3e1f

Browse files
committed
haproxy: fix missing user in rabbitmq healthcheck
RabbitMQ HAProxy config was missing user/auth in health checks, causing backend to be marked DOWN and HTTP 500 errors. Closes-Bug: #2150569 Change-Id: I1949210687bbe8f896e6b973950ddbea03c1f804 Signed-off-by: Piotr Milewski <vurmil@gmail.com>
1 parent 549ac0a commit d0a3e1f

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

ansible/group_vars/all/rabbitmq.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ enable_rabbitmq: "{{ 'yes' if om_rpc_transport == 'rabbit' or om_notify_transpor
55
# RabbitMQ options
66
####################
77
rabbitmq_user: "openstack"
8-
rabbitmq_monitoring_user: ""
8+
rabbitmq_monitoring_user: "openstack-monitoring"
99
# Whether to enable TLS encryption for RabbitMQ client-server communication.
1010
rabbitmq_enable_tls: false
1111
# CA certificate bundle in RabbitMQ container.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
fixes:
3+
- |
4+
Fix RabbitMQ HAProxy config missing auth in health checks.
5+
This caused backend to be marked DOWN and HTTP 500 errors.
6+
`LP#2150569 <https://launchpad.net/bugs/2150569>`__

0 commit comments

Comments
 (0)