Skip to content

Commit

Permalink
refactor:cache app module path in local settings
Browse files Browse the repository at this point in the history
Update the cache app module path from "cache" to "fbr.cache" in the local settings configuration. This change ensures the correct app module is referenced, potentially fixing loading issues related to the cache configuration.
  • Loading branch information
hareshkainthdbt committed Dec 9, 2024
1 parent fbbb481 commit 1391827
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fbr/config/settings/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
BASE_APPS = [
"whitenoise.runserver_nostatic", # Serve static files via WhiteNoise
"rest_framework",
"cache",
"fbr.cache",
]

INSTALLED_APPS = BASE_APPS + INSTALLED_APPS # noqa

0 comments on commit 1391827

Please sign in to comment.