I think I found an issue.
After updates (of everything basically) things appear stable, however the API was reporting
"'Response' object has no attribute '_headers'"
I commented out line 91 in rest_framework_extensions/cache/decorators.py
response._headers.copy()
and it went away. I'm guessing this is caused by a change in Django 3.2. The introduced a HttpResponse.headers field, but I tried replacing it like this and got a (different) error (not enough values to unpack (expected 3, got 2))
response.headers.copy()
I think I found an issue.
After updates (of everything basically) things appear stable, however the API was reporting "'Response' object has no attribute '_headers'"
I commented out line 91 in rest_framework_extensions/cache/decorators.py
response._headers.copy()
and it went away. I'm guessing this is caused by a change in Django 3.2. The introduced a HttpResponse.headers field, but I tried replacing it like this and got a (different) error (not enough values to unpack (expected 3, got 2)) response.headers.copy()
Django==3.2 djangorestframework==3.12.4 drf-extensions==0.7.0 Python 3.9.1