-
Notifications
You must be signed in to change notification settings - Fork 87
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
Fix compatibility with aiohttp==3.7.0 #174
Fix compatibility with aiohttp==3.7.0 #174
Conversation
Codecov Report
@@ Coverage Diff @@
## master #174 +/- ##
=======================================
Coverage 97.95% 97.95%
=======================================
Files 2 2
Lines 294 294
=======================================
Hits 288 288
Misses 6 6
Continue to review full report at Codecov.
|
The new version of aiohttp has made `limit` a required argument for the StreamReader class. This change adds an explicit limit of 2 ** 16 which is the same as what aiohttp uses internally. Using `limit` as a keyword (rather than a positional argument) keeps compatibility with previous versions of aiohttp. Fixes #173
@davidwtbuxton Thanks for the fix, we are running into this locally now. Any idea when this will be released? |
ping @pnuckowski |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
thx @pnuckowski . Could you tag and release this one soon. It is breaking CI for other projects. |
The new version of aiohttp has made
limit
a required argument for theStreamReader class. This change adds an explicit limit of 2 ** 16 which
is the same as what aiohttp uses internally.
Fixes #173