Merge "Fix horizon to use cache"

This commit is contained in:
Jenkins 2016-10-05 12:05:40 +00:00 committed by Gerrit Code Review
commit c191a7de83

View File

@ -158,6 +158,8 @@ SECRET_KEY='{{ horizon_secret_key }}'
# },
#}
{% if groups['memcached'] | length > 0 and horizon_backend_database | bool == False %}
SESSION_ENGINE = 'django.contrib.sessions.backends.cache'
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
@ -169,6 +171,7 @@ CACHES = {
{%- endif %}
}
}
{% endif %}
# Send email to the console by default
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'