You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using aiohttp and sending a open file as a body (here as io.BytesIO), when using VCR.py, the initial Request construction is consuming the body, so when aiohttp is getting the data, it's empty as VCR.py don't seek back.
When using aiohttp and sending a open file as a body (here as
io.BytesIO
), when using VCR.py, the initial Request construction is consuming the body, so when aiohttp is getting the data, it's empty as VCR.py don't seek back.Here is a PR #906 that fix this issue, by ensuring the body is seek back after reading.
The text was updated successfully, but these errors were encountered: