test move apps to memcached02

This commit is contained in:
Seddik Alaoui Ismaili 2024-11-19 22:00:30 +01:00 committed by zlopez
parent 2cf38c1f17
commit c88ab2cb08
7 changed files with 30 additions and 2 deletions

View file

@ -392,7 +392,11 @@ LOGGING = {
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.PyLibMCCache',
{% if env == 'staging' %}
'LOCATION': 'memcached02:11211',
{% else %}
'LOCATION': 'memcached01:11211',
{% endif %}
}
}