-
Notifications
You must be signed in to change notification settings - Fork 34
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
Allow instant publish of modified data fields #10875
base: epic-node-upgrading
Are you sure you want to change the base?
Allow instant publish of modified data fields #10875
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## epic-node-upgrading #10875 +/- ##
=========================================================
+ Coverage 84.60% 84.61% +0.01%
- Complexity 20021 20042 +21
=========================================================
Files 2636 2639 +3
Lines 69568 69675 +107
Branches 5616 5620 +4
=========================================================
+ Hits 58856 58955 +99
- Misses 7996 7998 +2
- Partials 2716 2722 +6 ☔ View full report in Codecov by Sentry. |
return results.stream().filter( br -> br.branch.equals( branch ) ).findAny().map( BranchResult::node ).orElse( null ); | ||
} | ||
|
||
public record BranchResult(Branch branch, Node node) |
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.
?
#10484