Skip to content

Commit

Permalink
fix(config/settings/production.py): remove OPTIONS key in "renditions"
Browse files Browse the repository at this point in the history
raises an exception
  • Loading branch information
engineervix committed Dec 9, 2021
1 parent 219c4b6 commit fcdc5b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion {{cookiecutter.project_slug}}/config/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@
"BACKEND": "django.core.cache.backends.memcached.PyMemcacheCache",
"LOCATION": env("MEMCACHED_URL"), # noqa F405
"TIMEOUT": 600,
"OPTIONS": {"MAX_ENTRIES": 1000},
# __init__() got an unexpected keyword argument 'MAX_ENTRIES'
# "OPTIONS": {"MAX_ENTRIES": 1000},
},
}
SESSION_ENGINE = "django.contrib.sessions.backends.cache"
Expand Down

0 comments on commit fcdc5b4

Please sign in to comment.