From 13918273d4a1074cc61caaf30d2cc7350656985a Mon Sep 17 00:00:00 2001 From: Haresh Kainth Date: Mon, 9 Dec 2024 14:58:00 +0000 Subject: [PATCH] refactor:cache app module path in local settings 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. --- fbr/config/settings/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fbr/config/settings/local.py b/fbr/config/settings/local.py index 97c194f..edb4d9e 100644 --- a/fbr/config/settings/local.py +++ b/fbr/config/settings/local.py @@ -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