Skip to content
Snippets Groups Projects
Commit ca8260eb authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Fix broken list concatenation in horizon role"

parents af6e1ca4 97cd1731
No related branches found
No related tags found
No related merge requests found
...@@ -20,6 +20,6 @@ ...@@ -20,6 +20,6 @@
- name: Update custom policy file name - name: Update custom policy file name
set_fact: set_fact:
custom_policy: "{{ custom_policy }} + [ '{{ overwritten_files.results.0.stat.path }}' ]" custom_policy: "{{ custom_policy + [overwritten_files.results.0.stat.path] }}"
when: when:
- overwritten_files.results - overwritten_files.results
---
fixes:
- |
Starting with ansible-core 2.13, list concatenation format is changed
which resulted in inability to override horizon policy files.
See `LP#2045660 <https://launchpad.net/bugs/2045660>`__
for more details.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment