-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Missing raise_for_status parameter to aiohttp.request #3290
Comments
GitMate.io thinks possibly related issues are #432 (asyncio.wait_for throwing a timeout error on aiohttp.request?), #168 (aiohttp.web missing), #1403 ([QUESTION] aiohttp.ClientSession.request('GET') issue), #2878 (Add argument 'raise_for_status' to 'ClientSession' request method.), and #2920 (AIOHttp failing after some requests). |
Makes sense. |
Yep. Will try to do something on this holidays |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a [new issue] for related bugs. |
Missing raise_for_status parameter to aiohttp.request
Well the title stands for itself.
Documentation on aiohttp.request stands, that this method have argument
raise_for_status
, which was added in version 3.4.But looking into current code of file
aiohttp.client.py
shows that this method do not have such argument.Expected behaviour
Expected that this code will work like a charm:
Actual behaviour
Get type error:
Steps to reproduce
Your environment
aiohttp==3.4.4
Client
The text was updated successfully, but these errors were encountered: