Merge "Fix aodh wsgi config file in Debuntu binary"

This commit is contained in:
Zuul 2021-12-21 18:29:08 +00:00 committed by Gerrit Code Review
commit 86bca63351
2 changed files with 6 additions and 4 deletions

View File

@ -34,9 +34,5 @@ LogLevel info
WSGIApplicationGroup %{GLOBAL}
WSGIDaemonProcess aodh group=aodh processes={{ openstack_service_workers }} threads=1 user=aodh
WSGIProcessGroup aodh
{% if aodh_install_type == 'binary' and kolla_base_distro in ['debian', 'ubuntu'] %}
WSGIScriptAlias / "{{ binary_path }}/python3-aodh-api"
{% else %}
WSGIScriptAlias / "{{ binary_path }}/aodh-api"
{% endif %}
</VirtualHost>

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fix the apache's wsgi configuration for the aodh service
in Debuntu binary flavours.
`LP#1953059 <https://launchpad.net/bugs/1953059>`__