-
Notifications
You must be signed in to change notification settings - Fork 341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade DRF to 3.9 #111
Comments
I'm having a similar problem in my own application -- would be interested in the answer. |
i'm having the same issue. i'm using django v 1.11.4. do you think the issue will go away if i upgrade to later version of django 1.11 or if i upgrade all the way to django v 2.x? |
Downgrading the version of my Django Rest Framework from 3.9 to 3.8 solved this issue for me. version 3.8 still has the @action attribute. |
This is true, but there were several enhancements and fixes added in 3.9 for the |
I tried to upgrade DRF to version 3.9 to make use of the @action attribute of the routers.
However when doing so I get the following error when browsing to the API's.
rest_framework.request.WrappedAttributeError: 'CSRFCheck' object has no attribute 'process_request'
This only happens when I'm logged in. When no user is logged in it works as it should!
I think this is linked with the authentication but I can not found what is causing the problem.
Would you be able to help me?
The text was updated successfully, but these errors were encountered: