openstack-ansible-os_horizon/releasenotes/notes/session_engine-54753c41d355e34e.yaml
Dmitriy Rabotyagov 9c3c776c7a Switch SESSION_ENGINE to memcached
Previously we were using cached_db session backend by default.
However with django version update, it requires more recent
mysqlclient module which is not part of requirements.
Moreover usage of cached_db makes us to carry and maintain
extra stuff, which can be dropped with memcached backend.

Change-Id: I8df7ee967d8dcbeb09a42fd568f98acc3e88adad
2019-12-18 19:52:38 +02:00

12 lines
402 B
YAML

---
upgrade:
- |
`SESSION_ENGINE` has been changed to memcached by default. So that
horizon do not require it's own database for storing session
information anymore. `horizon_galera_*` variables has no effect now.
features:
- |
Added variables `horizon_session_engine` and `horizon_session_caches`
which can be used to configure horizon session engine and a backend
for it.