-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
increase app access max http request size to 70MiB #40242
Merged
GavinFrazar
merged 6 commits into
master
from
gavinfrazar/raise-app-http-request-size-limit
Apr 19, 2024
Merged
increase app access max http request size to 70MiB #40242
GavinFrazar
merged 6 commits into
master
from
gavinfrazar/raise-app-http-request-size-limit
Apr 19, 2024
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
GavinFrazar
force-pushed
the
gavinfrazar/raise-app-http-request-size-limit
branch
from
April 5, 2024 04:33
4733590
to
61d6e8b
Compare
GavinFrazar
commented
Apr 5, 2024
GavinFrazar
force-pushed
the
gavinfrazar/raise-app-http-request-size-limit
branch
from
April 5, 2024 21:08
61d6e8b
to
d726669
Compare
GavinFrazar
changed the title
increase app access max http request size to 50MB
increase app access max http request size to 70MB
Apr 5, 2024
GavinFrazar
changed the title
increase app access max http request size to 70MB
increase app access max http request size to 70MiB
Apr 5, 2024
GavinFrazar
force-pushed
the
gavinfrazar/raise-app-http-request-size-limit
branch
from
April 5, 2024 22:27
d726669
to
d1c9e69
Compare
github-actions
bot
added
database-access
Database access related issues and PRs
size/sm
labels
Apr 5, 2024
greedy52
reviewed
Apr 8, 2024
greedy52
approved these changes
Apr 16, 2024
smallinsky
approved these changes
Apr 18, 2024
@GavinFrazar See the table below for backport results.
|
This was referenced Apr 20, 2024
GavinFrazar
added a commit
that referenced
this pull request
Apr 22, 2024
* increase app access max http request size to 70MB * move request body limiting into handlers * shim original behavior with custom reader wrappers * speed up aws handler tests
GavinFrazar
added a commit
that referenced
this pull request
Apr 22, 2024
* increase app access max http request size to 70MB * move request body limiting into handlers * shim original behavior with custom reader wrappers * speed up aws handler tests
github-merge-queue bot
pushed a commit
that referenced
this pull request
Apr 23, 2024
* increase app access max http request size to 70MiB (#40242) * increase app access max http request size to 70MB * move request body limiting into handlers * shim original behavior with custom reader wrappers * speed up aws handler tests * fix imports for backport
github-merge-queue bot
pushed a commit
that referenced
this pull request
Apr 23, 2024
* increase app access max http request size to 70MiB (#40242) * increase app access max http request size to 70MB * move request body limiting into handlers * shim original behavior with custom reader wrappers * speed up aws handler tests * fix imports for backport
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
application-access
aws
Used for AWS Related Issues.
backport/branch/v13
backport/branch/v14
backport/branch/v15
database-access
Database access related issues and PRs
size/sm
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.
changelog: Fixed an issue that prevented uploading a zipfile larger than 10MiB when updating an AWS Lambda function via tsh app access.
AWS limits lambda function zip file upload to 50MiB, but base64 encodes the body so the actual request size maximum is around ~70MiB. Anything bigger than that, they should just use s3 upload.
I decoupled app access request size limiting from other services by pulling the size limit out of our http utils.