-
-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
Bug/6294 zero bytes files are chunked #6568
Open
eivindt
wants to merge
4
commits into
psf:main
Choose a base branch
from
eivindt:bug/6294_zero_bytes_files_are_chunked
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
5 tasks
closing & reopening to trigger a new build |
@eivindt would you be willing to fix the lint errors? |
Give me a couple of days and I'll fix them. |
eivindt
force-pushed
the
bug/6294_zero_bytes_files_are_chunked
branch
from
March 10, 2024 14:32
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
eivindt
force-pushed
the
bug/6294_zero_bytes_files_are_chunked
branch
2 times, most recently
from
March 10, 2024 15:10
f8b0e7a
to
e57b722
Compare
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
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_len
that avoids returning length 0 for file handles that are not regular files.