Fixes #2691: Cable trace should follow circuits

This commit is contained in:
Jeremy Stretch
2018-12-19 12:48:20 -05:00
parent f4a22e5af3
commit 2f1db2fdf3
3 changed files with 3 additions and 2 deletions

View File

@@ -140,7 +140,7 @@ class CableTermination(models.Model):
if peer_port is None:
return path
next_segment = peer_port.trace(position)
next_segment = peer_port.trace(position, follow_circuits)
if next_segment is None:
return path + [(peer_port, None, None)]