Files
kolla-ansible/releasenotes/notes/fix-rabbitmq-version-check-condition-59528341299bab89.yaml
Seunghun Lee 00f8cb4c58 Fix RabbitMQ version check always getting skipped
Refactoring kolla_container_facts.py [1] caused breaking change because
of result output structure was changed.
Therefore the condition for the version check block always become false
(``container_facts[service.container_name]`` is always undefined).

Fixing this issue by matching the new kolla_container_facts result
structure.

Additionally, added assertions in tests for ``kolla_container_facts`` to
ensure the container fact result is not in old structure.

[1] https://review.opendev.org/c/openstack/kolla-ansible/+/911505

Closes-Bug: #2102662
Change-Id: I91a5f9c4b0e3c40ef21c25fb4866b07e25fbc017
Signed-off-by: Seunghun Lee <seunghun@stackhpc.com>
2025-07-30 11:34:56 +01:00

6 lines
156 B
YAML

---
fixes:
- |
Fixes RabbitMQ version check which would always be skipped.
`LP#2102662 <https://bugs.launchpad.net/kolla-ansible/+bug/2102662>`__