diff options
author | 2016-12-13 19:06:48 +0200 | |
---|---|---|
committer | 2016-12-13 19:06:48 +0200 | |
commit | 603bd7a4d9dcb8058812633ac60a75598578cb83 (patch) | |
tree | 71cf010b8568e02bf6d5a7d9af7477f8e4bb8d28 /scripts/automation/trex_control_plane/stl/trex_stl_lib | |
parent | 0fdd81a94d62592b0ec9888022d793f670c8476f (diff) |
startup issues with L2/L3
Signed-off-by: imarom <imarom@cisco.com>
Diffstat (limited to 'scripts/automation/trex_control_plane/stl/trex_stl_lib')
-rw-r--r-- | scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py index e44fe801..487f3055 100644 --- a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py +++ b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py @@ -903,7 +903,7 @@ class Port(object): # Grat ARP grat_arp = rx_info['grat_arp'] if grat_arp['is_active']: - info['grat_arp'] = grat_arp['interval_sec'] + info['grat_arp'] = "every {0} seconds".format(grat_arp['interval_sec']) else: info['grat_arp'] = "off" |