[horizon-k8s] comment memcache configuration

Comment mecache configuration in local_settings.py.j2
template. Without this change, the db sync failed as
memcache package is not installed.

Change-Id: I452c944276b1ea6163a8e3bb2dada1fd8229edd4
This commit is contained in:
Hemanth Nakkina 2024-01-02 08:49:27 +05:30
parent 2604875936
commit 41345c8271
No known key found for this signature in database
GPG Key ID: 2E4970F7B143168E

View File

@ -145,12 +145,12 @@ SECRET_KEY = "{{ options.secret }}"
# of the django development server, you will have to login again. To use
# memcached set CACHES to something like
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
},
}
#CACHES = {
# 'default': {
# 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
# 'LOCATION': '127.0.0.1:11211',
# },
#}
{% if database.database_host -%}
SESSION_ENGINE = 'django.contrib.sessions.backends.cached_db'
DATABASES = {