-
Notifications
You must be signed in to change notification settings - Fork 6
Pipeline Validation #116
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
Pipeline Validation #116
Conversation
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
src/core/model/pipeline.rs
Outdated
| .into_iter() | ||
| .map(|parent_idx| { | ||
| // Check if hash has been computed for this node, if not trigger computation | ||
| if graph[parent_idx].hash.is_empty() { |
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.
Would be good to move the hash check to the node itself instead of performing the hash property check on the parent 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.
Fixed
Depends on #115
Resolves PIPE-120