[GOBBLIN-2036] Fix type error where string config is forced into boolean type#3915
Merged
Will-Lo merged 1 commit intoapache:masterfrom Apr 4, 2024
Merged
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #3915 +/- ##
============================================
- Coverage 46.64% 46.64% -0.01%
- Complexity 11222 11224 +2
============================================
Files 2244 2244
Lines 88367 88368 +1
Branches 9679 9679
============================================
- Hits 41221 41216 -5
- Misses 43430 43441 +11
+ Partials 3716 3711 -5 ☔ View full report in Codecov by Sentry. |
umustafi
approved these changes
Apr 4, 2024
Contributor
|
This worked before because we had the value as a string? I don't recall us changing the configurations, but regardless of how |
phet
approved these changes
Apr 4, 2024
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.
Dear Gobblin maintainers,
Please accept this PR. I understand that it will not be reviewed until I have checked off all the steps below!
JIRA
Description
The old value of
flow.allowConcurrentExecutionis set as a string value in the flow configuration jsons, but in the code we parse it as boolean. Instead we want to parse as string then convert to boolean to make this backwards compatible with existing flow configs.Tests
Commits