#32100: Parameter KEY_PREFIX for DummyCache causing test runner to fail
-------------------------------------+-------------------------------------
Reporter: Kaustubh Bhalerao | Owner: nobody
Type: Bug | Status: closed
Component: Core (Cache system) | Version: 3.1
Severity: Normal | Resolution: invalid
Keywords: | Triage Stage:
| Unreviewed
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-------------------------------------+-------------------------------------
Changes (by felixxm):
* status: new => closed
* resolution: => invalid
Comment:
It's a bug in your settings,
[https://docs.djangoproject.com/en/3.1/ref/settings/#key-prefix
KEY_PREFIX] should be in `'default'`:
{{{
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
'KEY_PREFIX': 'SomeKeyPrefix',
},
}
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/32100#comment:1>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/067.7b142117cd2b30fd8642e9729e117401%40djangoproject.com.