Skip to content
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

Address cases where MultipartEncoder source stream grows or shrinks mid-way through encoding, leading to malformed requests #314

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Sep 24, 2021

  1. Address cases where MultipartEncoder source stream grows or shrinks m…

    …id-way through encoding
    
    Previously, MultipartEncoder in conjunction with requests could produce
    a malformed request if the source data stream grew (e.g. appending to a
    log file being uploaded) or shrunk during encoding. This change
    addresses both the growing case (by only transmitting the originally
    promised amount of data) and the shrinking case (by raising an
    exception).
    Collin Fair committed Sep 24, 2021
    Configuration menu
    Copy the full SHA
    42cfaf1 View commit details
    Browse the repository at this point in the history