src: fix EnvironmentOptions.async_context_frame default value#58030
Merged
nodejs-github-bot merged 1 commit intonodejs:mainfrom Apr 27, 2025
Merged
src: fix EnvironmentOptions.async_context_frame default value#58030nodejs-github-bot merged 1 commit intonodejs:mainfrom
nodejs-github-bot merged 1 commit intonodejs:mainfrom
Conversation
Collaborator
|
Review requested:
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #58030 +/- ##
==========================================
+ Coverage 90.27% 90.29% +0.02%
==========================================
Files 630 630
Lines 186159 186164 +5
Branches 36473 36481 +8
==========================================
+ Hits 168053 168095 +42
+ Misses 10976 10941 -35
+ Partials 7130 7128 -2
🚀 New features to boost your workflow:
|
Flarna
approved these changes
Apr 26, 2025
Member
|
Refs: #55552 |
This comment was marked as outdated.
This comment was marked as outdated.
Member
|
great finding! |
Member
|
Commit message has a typo (defualt instead default). |
`default_is_true` in bool OptionsParser is a hint for help text. The default value for an option is still required to be set in the option struct.
c469028 to
9b47b3c
Compare
Member
Author
|
@Flarna thanks, commit message updated! |
lpinca
approved these changes
Apr 26, 2025
jasnell
approved these changes
Apr 26, 2025
Qard
approved these changes
Apr 26, 2025
This comment was marked as outdated.
This comment was marked as outdated.
Collaborator
Collaborator
|
Landed in 6cd1c09 |
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
RafaelGSS
pushed a commit
that referenced
this pull request
May 1, 2025
`default_is_true` in bool OptionsParser is a hint for help text. The default value for an option is still required to be set in the option struct. PR-URL: #58030 Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
RafaelGSS
pushed a commit
that referenced
this pull request
May 2, 2025
`default_is_true` in bool OptionsParser is a hint for help text. The default value for an option is still required to be set in the option struct. PR-URL: #58030 Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
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.
default_is_truein bool OptionsParser is a hint for help text. Thedefault value for an option is still required to be set in the option
struct.