-
Notifications
You must be signed in to change notification settings - Fork 26
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 EdgeHolder from incorrectly reporting an active connection #402
Fix EdgeHolder from incorrectly reporting an active connection #402
Conversation
…nts check_active_connection from mistakenly returning true for a holder where init_owned_edge has been called but neither the init_connected_edge method or the add_connector method have not been called
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## branch-23.11 #402 +/- ##
================================================
+ Coverage 73.59% 73.62% +0.03%
================================================
Files 385 385
Lines 13614 13613 -1
Branches 1028 1027 -1
================================================
+ Hits 10019 10023 +4
+ Misses 3595 3590 -5
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 4 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
/merge |
… raise an exception rather than segfaulting (#1829) * MRC PR nv-morpheus/MRC#402 fixed this issue, this PR adds some unittests to ensure this. * Update `Pipeline.build_and_start` to re-raise any exceptions raised during build, this prevents `Pipeline.join` from being called which avoids a failed assert in `join` since the expected future was not created. Closes #953 ## By Submitting this PR I confirm: - I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md). - When the PR is ready for review, new or existing tests cover these changes. - When the PR is ready for review, the documentation is up to date with these changes. Authors: - David Gardner (https://github.com/dagardner-nv) Approvers: - Michael Demoret (https://github.com/mdemoret-nv) URL: #1829
Description
check_active_connection
from mistakenly returning true for a holder whereinit_owned_edge
has been called but neither theinit_connected_edge method
or theadd_connector
method have not been called.Relates to issue #360
Checklist