Open
Conversation
5 tasks
Contributor
|
closing & reopening to trigger a new build |
Contributor
|
@eivindt would you be willing to fix the lint errors? |
Author
|
Give me a couple of days and I'll fix them. |
e1b5859 to
e2bb032
Compare
PUT-ing an empty file should not cause a chunked transfer.
Differentiate between data that are known to be 0 bytes and data where size is not known. Only data where size is not known should be transferred as "chunked" transfers.
Handles original bug psf#2215
f8b0e7a to
e57b722
Compare
Author
|
Sorry for the delay, there were some windows specific issues I couldn't easily fix without a windows pc. |
sigmavirus24
approved these changes
Mar 11, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
See bug #6294 for original bug report.
This PR provides a possible fix for this, reverting the change in #2896.
The change in #2896 definitely causes some bad side effects, since not all web servers handle "chunked" transfer encoding (i.e. some don't handle it, some don't handle it well).
Problem demonstration
Given a simple bottle application:
And a simple requests script:
Working Scenario
Test script output:
Failing Scenario
Test script output:
The Original Issue
The change causing this problem in the first place was due to failing to upload data read from a subprocess pipe.
This patch adds a check to
super_lenthat avoids returning length 0 for file handles that are not regular files.