Skip to content

Commit

Permalink
Fix cache
Browse files Browse the repository at this point in the history
  • Loading branch information
JobDoesburg committed Apr 9, 2024
1 parent da12b0b commit b3fa759
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/tosti/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@


# SPOTIFY
SPOTIFY_CACHE_PATH = BASE_DIR.parent.parent / "cache" / "spotipycache"
MARIETJE_CACHE_PATH = BASE_DIR.parent.parent / "cache" / "marietjecache"
SPOTIFY_CACHE_PATH = BASE_DIR.parent / "cache" / "spotipycache"
MARIETJE_CACHE_PATH = BASE_DIR.parent / "cache" / "marietjecache"

# SENTRY
if os.environ.get("SENTRY_DSN"):
Expand All @@ -99,7 +99,7 @@
CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.filebased.FileBasedCache",
"LOCATION": BASE_DIR.parent.parent / "cache" / "cache",
"LOCATION": BASE_DIR.parent / "cache" / "cache",
}
}

Expand Down

0 comments on commit b3fa759

Please sign in to comment.