1
0
mirror of https://github.com/django/django.git synced 2025-04-04 05:26:43 +00:00

Fixed #25782 -- Prevented duplicate caching when using CacheMiddleware and cache_page.

This commit is contained in:
wassef911 2024-07-14 11:31:43 +01:00
parent b4f0ca776c
commit 5f195a62b1
No known key found for this signature in database
GPG Key ID: A4166E2C2C794D2C

View File

@ -280,3 +280,9 @@ Miscellaneous
-------------
* ...
Miscellaneous
~~~~~
* Subclasses of :class:`~django.middleware.cache.UpdateCacheMiddleware`
will no longer cause duplication when used with cache decorator.