From 017043b7e17d7e602bffee30a566ff05155d8bbc Mon Sep 17 00:00:00 2001 From: Chuck SmileyRekiere Date: Wed, 27 Oct 2021 10:24:57 -0600 Subject: [PATCH] l3_cxprofile.py : updated columns for rx GI Signed-off-by: Chuck SmileyRekiere --- py-json/l3_cxprofile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py-json/l3_cxprofile.py b/py-json/l3_cxprofile.py index 134b28dd..de9ea591 100644 --- a/py-json/l3_cxprofile.py +++ b/py-json/l3_cxprofile.py @@ -293,8 +293,8 @@ class L3CXProfile(LFCliBase): probe_results['RX NSS'] = probe_port.rx_nss probe_results['RX MHz'] = probe_port.rx_mhz #probe_results['RX guard interval'] = probe_port.rx_ns - probe_results['RX Mbps gi short'] = probe_port.rx_data_rate_gi_short_Mbps - probe_results['RX Mbps gi long'] = probe_port.rx_data_rate_gi_long_Mbps + probe_results['RX Mbps short GI'] = probe_port.rx_data_rate_gi_short_Mbps + probe_results['RX Mbps long GI'] = probe_port.rx_data_rate_gi_long_Mbps probe_df_initial = pd.DataFrame(probe_results.values()).transpose()