Merge "Fix horizon to use cache"
This commit is contained in:
commit
c191a7de83
@ -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'
|
||||
|
Loading…
Reference in New Issue
Block a user