mirror of
https://github.com/ansible/awx.git
synced 2026-04-12 21:49:24 -02:30
Merge pull request #7240 from rebeccahhh/memcache-memories
remove memcache entirely, add in some django redis to cover it's absence Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
@@ -439,10 +439,11 @@ CELERYBEAT_SCHEDULE = {
|
||||
}
|
||||
|
||||
# Django Caching Configuration
|
||||
DJANGO_REDIS_IGNORE_EXCEPTIONS = True
|
||||
CACHES = {
|
||||
'default': {
|
||||
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
|
||||
'LOCATION': 'unix:/var/run/memcached/memcached.sock'
|
||||
'BACKEND': 'django_redis.cache.RedisCache',
|
||||
'LOCATION': 'unix:/var/run/redis/redis.sock?db=1'
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user