Merge "Fix some CloudKitty API responses when behind SSL"

This commit is contained in:
Zuul 2020-07-24 10:38:57 +00:00 committed by Gerrit Code Review
commit 9a141eb144
2 changed files with 8 additions and 0 deletions

View File

@ -30,6 +30,9 @@ memcache_security_strategy = ENCRYPT
memcache_secret_key = {{ memcache_secret_key }}
memcached_servers = {% for host in groups['memcached'] %}{{ 'api' | kolla_address(host) | put_address_in_context('memcache') }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
[oslo_middleware]
enable_proxy_headers_parsing = True
[oslo_concurrency]
lock_path = /var/lib/cloudkitty/tmp

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes issues with some CloudKitty commands trying to connect to an external
TLS endpoint using HTTP. `LP#1888544 <https://launchpad.net/bugs/1888544>`__