-
Notifications
You must be signed in to change notification settings - Fork 59
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(378): ensure that undefined executions ids won't get into graph #388
Conversation
Signed-off-by: Nastya Rusina <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #388 +/- ##
==========================================
- Coverage 66.45% 66.43% -0.02%
==========================================
Files 405 405
Lines 9059 9063 +4
Branches 1599 1600 +1
==========================================
+ Hits 6020 6021 +1
- Misses 3039 3042 +3
Continue to review full report at Codecov.
|
Signed-off-by: Nastya Rusina <[email protected]>
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!
# [0.52.0](http://github.com/lyft/flyteconsole/compare/v0.51.3...v0.52.0) (2022-04-14) ### Bug Fixes * **378:** ensure that undefined executions ids won't get into graph ([#388](http://github.com/lyft/flyteconsole/issues/388)) ([ea9d2b3](http://github.com/lyft/flyteconsole/commit/ea9d2b31e1e6f51872eb7d10283b645de3b17bec)) ### Features * cleanup ([#389](http://github.com/lyft/flyteconsole/issues/389)) ([05b88ed](http://github.com/lyft/flyteconsole/commit/05b88ed2d2ecdb5d8a8404efea25414e57189709))
🎉 This PR is included in version 0.52.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Current fix removed request for undefined executionIds, which usually happens with branch nodes.
It allows us to avoid unneeded crash. Further work is needed for proper support of Branch nodes.
Type
Are all requirements met?
Tracking Issue
fixes https://github.com/flyteorg/flyteconsole/issues/378
Follow-up issue
This fix currently removes the crash, however it doesn't fix the branch node representation, which is still a bit off. A separate task was created to cover that work:
https://github.com/flyteorg/flyteconsole/issues/377
TODO
with task number was added to the code to ensure, that fix would be fully testedSigned-off-by: Nastya Rusina [email protected]