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.
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
Revert partially constructed segments on-error in segment init function #434
base: branch-24.10
Are you sure you want to change the base?
Revert partially constructed segments on-error in segment init function #434
Changes from 24 commits
75db6d7
7c58f7e
1bd0eaf
4021c0b
6cbe155
2b80e67
df2dc2e
c9eccac
66d3b07
63de5c0
44dd6c9
defa442
9d83330
2de362f
13f1371
f6b2395
e93e7a4
615e98c
34a99ff
c7d6587
c2a485a
697df42
4b72060
c896eeb
f57e922
fd5ab48
b92f1f9
20ea08c
8986784
3143daf
6040afb
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
Check warning on line 63 in cpp/mrc/include/mrc/edge/edge_holder.hpp
cpp/mrc/include/mrc/edge/edge_holder.hpp#L62-L63
Check warning on line 66 in cpp/mrc/include/mrc/edge/edge_holder.hpp
cpp/mrc/include/mrc/edge/edge_holder.hpp#L66
Check warning on line 71 in cpp/mrc/include/mrc/edge/edge_holder.hpp
cpp/mrc/include/mrc/edge/edge_holder.hpp#L71
Check warning on line 77 in cpp/mrc/include/mrc/edge/edge_holder.hpp
cpp/mrc/include/mrc/edge/edge_holder.hpp#L77
Check warning on line 79 in cpp/mrc/include/mrc/edge/edge_holder.hpp
cpp/mrc/include/mrc/edge/edge_holder.hpp#L79
Check warning on line 81 in cpp/mrc/include/mrc/edge/edge_holder.hpp
cpp/mrc/include/mrc/edge/edge_holder.hpp#L81
Check warning on line 84 in cpp/mrc/include/mrc/edge/edge_holder.hpp
cpp/mrc/include/mrc/edge/edge_holder.hpp#L83-L84
Check warning on line 86 in cpp/mrc/include/mrc/edge/edge_holder.hpp
cpp/mrc/include/mrc/edge/edge_holder.hpp#L86
Check warning on line 90 in cpp/mrc/include/mrc/edge/edge_holder.hpp
cpp/mrc/include/mrc/edge/edge_holder.hpp#L89-L90
Check warning on line 38 in cpp/mrc/include/mrc/manifold/egress.hpp
cpp/mrc/include/mrc/manifold/egress.hpp#L38
Check warning on line 62 in cpp/mrc/include/mrc/manifold/egress.hpp
cpp/mrc/include/mrc/manifold/egress.hpp#L62
Check warning on line 36 in cpp/mrc/include/mrc/manifold/ingress.hpp
cpp/mrc/include/mrc/manifold/ingress.hpp#L36
Check warning on line 60 in cpp/mrc/include/mrc/manifold/ingress.hpp
cpp/mrc/include/mrc/manifold/ingress.hpp#L60
Check warning on line 236 in cpp/mrc/include/mrc/node/source_properties.hpp
cpp/mrc/include/mrc/node/source_properties.hpp#L236
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.
Need to see if there are any implementations of
on_complete
. If there arent, then we should just scrap the disconnector and remove the state and mutex changes.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.
I checked, the classes which implement
on_complete
are:mrc::node::NodeComponent
CallsSourceProperties<OutputT>::release_edge_connection();
anddo_on_complete
which is unimpl in the basemrc::node::RouterBase
callsMultiSourceProperties<KeyT, output_data_t>::release_edge_connections();
do_on_complete
in turn is used byLambdaNodeComponent
to callm_on_complete_fn
if defined.