-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Description
Hi,
I working with DJDT for a few months.
I figure out the "not showing" issue in docker, but the data inside the cache panel is not showing properly.
The inner data, doesnt match the outer data and in the arguments column it shows addresses or something alike.
A proper data: (taken from an online guide)

(From: https://testdriven.io/blog/django-low-level-cache/#cache-backend)
What it shows inside a Docker:

BTW: It also shows it like a view cache, but the view is not cached (Its a dynamic view)
My Configuration:
DEBUG_TOOLBAR_ENABLED = True
if DEBUG and DEBUG_TOOLBAR_ENABLED:
INSTALLED_APPS.append('debug_toolbar')
MIDDLEWARE.insert(0, 'debug_toolbar.middleware.DebugToolbarMiddleware')
MIDDLEWARE.insert(1, 'django.middleware.cache.UpdateCacheMiddleware')
MIDDLEWARE.append('django.middleware.cache.FetchFromCacheMiddleware')
#INTERNAL_IPS.append('127.0.0.1')
DEBUG_TOOLBAR_CONFIG = {
'SHOW_TOOLBAR_CALLBACK': lambda request: False if request.is_ajax() else True,
}
Does anyone have idea how to solve it ?
Where to start ?
Metadata
Metadata
Assignees
Labels
No labels