Replies: 2 comments 6 replies
-
With my monkey patch, I want to say most of the code was reused from the work from @tnn2 at tnn2@e4081c5 What I needed to do:
For this testing, I didn't include any of the template code changes. |
Beta Was this translation helpful? Give feedback.
-
I also just ran into this "issue" of not being able to do a cable trace without an endpoint. Judging by the amount of issues over the time it certainly seems to be in demand. Maybe another and simpler approach could be to treat front ports marked as connected as PathEndpoints? This wouldn't solve the issue in all cases but I would assume it would be enough for most. |
Beta Was this translation helpful? Give feedback.
-
Re-investigating #9718 as I recently was able to monkey patch a few of the functions to properly support this but we should have a solid approach to this first.
There are a couple different ways we can do this:
a. From any port
b. From an unconnected front port so there is "directionality" and position
c. From an unconnected port, front or rear port and when working with a rear port with multiple positions assume position 1
I personally prefer option #2 b) as it makes it easy to determine the proper path in most instances as there is a direction (front port, to rear port) and a position (front port position). a) and c) make things extremely messy.
Beta Was this translation helpful? Give feedback.
All reactions