Fix caching issue with fixed 5 minute timeout

This commit is contained in:
2023-01-17 13:33:21 -05:00
parent 734aa6073b
commit 6db5a00917

View File

@ -61,6 +61,8 @@ CSRF_TRUSTED_ORIGINS = [
]
X_FRAME_OPTIONS = "SAMEORIGIN"
CACHALOT_TIMEOUT = os.getenv("VROBBLER_CACHALOT_TIMEOUT", 3600)
REDIS_URL = os.getenv("VROBBLER_REDIS_URL", None)
CELERY_TASK_ALWAYS_EAGER = os.getenv("VROBBLER_SKIP_CELERY", False)