Comment 11 for bug 2045660

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to kolla-ansible (stable/zed)

Reviewed: https://review.opendev.org/c/openstack/kolla-ansible/+/915018
Committed: https://opendev.org/openstack/kolla-ansible/commit/4d649e3daf6b1055d8e2e5cd30fec6866cf9ae8b
Submitter: "Zuul (22348)"
Branch: stable/zed

commit 4d649e3daf6b1055d8e2e5cd30fec6866cf9ae8b
Author: Andrey Kurilin <email address hidden>
Date: Thu Nov 23 15:24:08 2023 +0100

    Fix broken list concatenation in horizon role

    Starting with ansible-core 2.13, list concatenation format is changed
    and does not support concatenation operations outside of the jinja template.

    The format change:

      "[1] + {{ [2] }}" -> "{{ [1] + [2] }}"

    This affects the horizon role that iterates over existing policy files to
    override and concatenate them into a single variable.

    Co-Authored-By: Dr. Jens Harbott <email address hidden>

    Closes-Bug: #2045660
    Change-Id: I91a2101ff26cb8568f4615b4cdca52dcf09e6978
    (cherry picked from commit 97cd173177c88f08e62fa4b4f57a3c34a46f1c2a)