Fix malformed OIDCMemCacheServers
Change from comma separated list of memcache servers to space separated list. Comma seperated list results in a 500 error response. Upstream docs state this should be space separated and can be found here: https://github.com/zmartzone/mod_auth_openidc/blob/master/auth_openidc.conf#L629-L631 Closes-Bug: #1972033 Change-Id: Ibaef3672c656213dd5ba1488379d686130e041c5
This commit is contained in:
parent
555cd39f1a
commit
6563191de8
@ -66,7 +66,7 @@ LogLevel info
|
||||
OIDCRedirectURI {{ keystone_public_url }}/redirect_uri
|
||||
{% if enable_memcached | bool and keystone_oidc_enable_memcached | bool %}
|
||||
OIDCCacheType memcache
|
||||
OIDCMemCacheServers "{% for host in groups['memcached'] %}{{ 'api' | kolla_address(host) | put_address_in_context('memcache') }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}"
|
||||
OIDCMemCacheServers "{% for host in groups['memcached'] %}{{ 'api' | kolla_address(host) | put_address_in_context('memcache') }}:{{ memcached_port }}{% if not loop.last %} {% endif %}{% endfor %}"
|
||||
{% endif %}
|
||||
|
||||
<Location ~ "/redirect_uri">
|
||||
|
Loading…
x
Reference in New Issue
Block a user