-
-
Notifications
You must be signed in to change notification settings - Fork 31.7k
src: fix EnvironmentOptions.async_context_frame default value #58030
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
src: fix EnvironmentOptions.async_context_frame default value #58030
Conversation
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:
|
Refs: #55552 |
This comment was marked as outdated.
This comment was marked as outdated.
great finding! |
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.
lgtm
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
@Flarna thanks, commit message updated! |
This comment was marked as outdated.
This comment was marked as outdated.
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.
lgtm
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.
`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 <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Stephen Belanger <[email protected]> Reviewed-By: Juan José Arboleda <[email protected]>
`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 <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Stephen Belanger <[email protected]> Reviewed-By: Juan José Arboleda <[email protected]>
default_is_true
in bool OptionsParser is a hint for help text. Thedefault value for an option is still required to be set in the option
struct.