Conversation
Co-Authored-By: GPT-6 <codex@openai.com>
Contributor
size-limit report 📦
|
msonnb
marked this pull request as ready for review
September 18, 2026 09:06
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.
SAM starts EAGER runtime containers before binding its API endpoint. Those containers randomly choose ports in 5000–8999, so one can take our old port 7120. Its plain-text 404 passed the readiness check, then every Lambda invocation failed with a JSON-deserialization error, matching the reported CI failures.
Move both AWS E2E apps to port 17120, outside that range. Require SAM's
PathNotFoundLocallyresponse header for readiness and pause between unsuccessful probes. All 10 layer tests passed with the old port deliberately occupied by a runtime container.Fixes #24465, fixes #24466, fixes #24467, fixes #24468, fixes #24469, fixes #24470, fixes #24471, fixes #24472, fixes #24473.