Skip to content

Commit

Permalink
fix: missing env var during build time
Browse files Browse the repository at this point in the history
  • Loading branch information
mihow committed Jan 26, 2025
1 parent a72aa0c commit 59b4867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@
CACHES = {
"default": {
"BACKEND": "django_redis.cache.RedisCache",
"LOCATION": env("REDIS_URL"),
"LOCATION": env("REDIS_URL", default=None),
"OPTIONS": {
"CLIENT_CLASS": "django_redis.client.DefaultClient",
# Mimicing memcache behavior.
Expand Down

0 comments on commit 59b4867

Please sign in to comment.