-
Notifications
You must be signed in to change notification settings - Fork 215
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(flags): Fix Payload Builder Flags #2442
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2442 +/- ##
==========================================
- Coverage 31.59% 31.57% -0.03%
==========================================
Files 348 348
Lines 15519 15529 +10
Branches 20 20
==========================================
Hits 4903 4903
- Misses 10272 10282 +10
Partials 344 344
|
BuilderEnabled = builderRoot + "enabled" | ||
BuildPayloadTimeout = builderRoot + "payload-timeout" |
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.
These flags were not used before. Hence the incorrect local-builder-
went unnoticed.
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.
Nice catch! Are they used now? Should we drop them?
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.
no need to drop them - i will use them for testing
This fix was required for the testing work as the flags are not used and do not have the correct mapstructure. This brings it in line with the yaml file format.