-
Notifications
You must be signed in to change notification settings - Fork 4
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: panic removing InPorts in MultiPortGraph::set_num_ports #191
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #191 +/- ##
==========================================
+ Coverage 83.56% 83.60% +0.04%
==========================================
Files 24 24
Lines 6347 6363 +16
Branches 6347 6363 +16
==========================================
+ Hits 5304 5320 +16
+ Misses 969 967 -2
- Partials 74 76 +2 ☔ View full report in Codecov by Sentry. |
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.
Ouch. Good catch!
## 🤖 New release * `portgraph`: 0.13.2 -> 0.13.3 (✓ API compatible changes) <details><summary><i><b>Changelog</b></i></summary><p> <blockquote> ## [0.13.3](v0.13.2...v0.13.3) - 2025-03-04 ### Bug Fixes - panic removing InPorts in MultiPortGraph::set_num_ports ([#191](#191)) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). --------- Co-authored-by: Agustín Borgna <[email protected]>
See test case. The problem is that iterating through the
dropped_ports
readsself.multiport
using old indices, afterself.multiport
was mutated/renumbered by the callback earlier. (Thus, if the first OutPort was a multiport, removing the last InPort can end up reading a false positive.)I've tried to see if I can break it by adding inports too, but in such cases all the ports get moved to a new "block" so there is no problem (hence, a more thorough "fix" to do all reading of self.multiport before any writing to it, including the reading+writing performed by
self.multiport.swap
, does not appear necessary).