-
Notifications
You must be signed in to change notification settings - Fork 367
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
fix: function:serve shows undefined port in url #4146
Merged
Merged
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
📊 Benchmark resultsComparing with 474118d Package size: 362 MB(no change)
Legend
|
lukasholzer
previously approved these changes
Jan 31, 2022
Thx for adapting the tests! 🐳 |
karagulamos
added
automerge
Add to Kodiak auto merge queue
and removed
automerge
Add to Kodiak auto merge queue
labels
Jan 31, 2022
@karagulamos, do you mind resolving the merge conflict? The test file was renamed in #4164 |
erezrokah
approved these changes
Feb 4, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Going to approve per @lukasholzer review so we can merge this
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.
Summary
Fixes #4116
When a Netlify site is served using
netlify functions:serve
locally, the function URL shown at the terminal contains anundefined
port which is incorrect albeit confusing to users when they click on it. This is caused by the use of an undefinedNetlifyFunction:settings:port
property composed within theNetlifyFunction:url
(getter) property. This PR fixes the issue and includes relevant tests.NOTE: Although I scoured the codebase for a valid usage of
NetlifyFunction:settings:port
to no avail, I’m not particularly fond of the current solution but left it there with comments (and for compatibility) should anyone wish to take a closer look.