Remove django-cachalot, more problems than solutions

This commit is contained in:
2023-02-15 01:32:33 -05:00
parent b47ca53c5d
commit 817ad3f67f
3 changed files with 6 additions and 21 deletions

View File

@ -70,7 +70,6 @@ CSRF_TRUSTED_ORIGINS = [
]
X_FRAME_OPTIONS = "SAMEORIGIN"
CACHALOT_TIMEOUT = os.getenv("VROBBLER_CACHALOT_TIMEOUT", 3600)
REDIS_URL = os.getenv("VROBBLER_REDIS_URL", None)
INSTALLED_APPS = [
@ -86,7 +85,6 @@ INSTALLED_APPS = [
"django_extensions",
"rest_framework.authtoken",
"encrypted_field",
"cachalot",
"profiles",
"scrobbles",
"videos",
@ -296,9 +294,12 @@ LOGGING = {
},
"django.db.backends": {"handlers": ["null"]},
"django.server": {"handlers": ["null"]},
"pylast": {"handlers": ["null"], "propagate": False},
"musicbrainzngs": {"handlers": ["null"], "propagate": False},
"httpx": {"handlers": ["null"], "propagate": False},
"vrobbler": {
"handlers": ["file"],
"propagate": True,
"handlers": ["console"],
"propagate": False,
},
},
}