-
Notifications
You must be signed in to change notification settings - Fork 37
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 operation group status #774
Conversation
@bdice yeah. I will fix with a rebase. 🙃 |
- _gather_selected_flow_groups: which selects groups regardless of executability - _gather_executable_flow_groups: which defaults to singleton groups and only allows executable outputs or errors.
f7a9ba9
to
a5d3313
Compare
@bdice fixed. Sorry about that. |
Codecov Report
@@ Coverage Diff @@
## main #774 +/- ##
==========================================
- Coverage 69.15% 69.11% -0.04%
==========================================
Files 44 44
Lines 4295 4297 +2
Branches 1047 950 -97
==========================================
Hits 2970 2970
- Misses 1114 1115 +1
- Partials 211 212 +1
|
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.
Co-authored-by: Bradley Dice <[email protected]>
I can confirm this fixes the main issue described in #773. However, just to make it clear, the related bug mentioned in #773. I think this is simple and related enough to just fix it here. I would gladly do it, but I don't have permission to add commits to this PR... It would just be a simple change: just change this line to |
For operations in multi-operation groups, the shared status dictionary would get overwritten in status printing specifically the display name. This results in only the last being printed.
As far as I can tell, this now completely fixes #773 . Thank you very much! |
Description
Correct the selection of groups in
status
functions and splits_gather_flow_groups
into 2 functions with clearer names.Motivation and Context
Resolves: #773
Checklist: