diff options
author | 2017-01-24 14:11:32 +0200 | |
---|---|---|
committer | 2017-01-24 14:11:32 +0200 | |
commit | 19df06349d311377ca1ef10f91ef1f786b41418b (patch) | |
tree | 3c5fa2e76fd5dd0dff370df7013e757e289b1ac5 /scripts/automation/trex_control_plane/stl/trex_stl_lib | |
parent | 418fd3d0a7169f2d8934e8be82d11e1a388d681c (diff) |
code review cleanups - C++
Signed-off-by: imarom <imarom@cisco.com>
Diffstat (limited to 'scripts/automation/trex_control_plane/stl/trex_stl_lib')
-rwxr-xr-x | scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py index f7432107..d81765c6 100755 --- a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py +++ b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py @@ -3049,7 +3049,7 @@ class STLClient(object): if not rc: raise STLError(rc) - return {'id': rc.data()['capture_id'], 'ts': rc.data()['ts']} + return {'id': rc.data()['capture_id'], 'ts': rc.data()['start_ts']} |