From 60e38ec016bf665b817788c6ad89f0ab50ed67b1 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 12 Dec 2025 10:53:10 -0500 Subject: [PATCH] Fix shuffle breakout mapping --- netbox/dcim/cable_profiles.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/netbox/dcim/cable_profiles.py b/netbox/dcim/cable_profiles.py index 3e7f24f60..bad85bfaa 100644 --- a/netbox/dcim/cable_profiles.py +++ b/netbox/dcim/cable_profiles.py @@ -228,10 +228,10 @@ class ShuffleBreakout2x8CableProfile(BaseCableProfile): (1, 2): (2, 1), (1, 3): (5, 1), (1, 4): (6, 1), - (2, 1): (3, 2), - (2, 2): (4, 2), - (2, 3): (7, 2), - (2, 4): (8, 2), + (2, 1): (3, 1), + (2, 2): (4, 1), + (2, 3): (7, 1), + (2, 4): (8, 1), } _b_mapping = { (1, 1): (1, 1),