Fixed configuration inconsistency for Redis cache
In the configuration.py we use database 1 as the default but in the .env file we used 0. This sets both values to 1 as the default.
This commit is contained in:
parent
880628876f
commit
355ebadd10
|
@ -20,7 +20,7 @@ REDIS_DATABASE=0
|
|||
REDIS_SSL=false
|
||||
REDIS_CACHE_HOST=redis-cache
|
||||
REDIS_CACHE_PASSWORD=t4Ph722qJ5QHeQ1qfu36
|
||||
REDIS_CACHE_DATABASE=0
|
||||
REDIS_CACHE_DATABASE=1
|
||||
REDIS_CACHE_SSL=false
|
||||
SECRET_KEY=r8OwDznj!!dci#P9ghmRfdu1Ysxm0AiPeDCQhKE+N_rClfWNj
|
||||
SKIP_STARTUP_SCRIPTS=false
|
||||
|
|
Loading…
Reference in New Issue