diff options
author | Yaroslav Brustinov <ybrustin@cisco.com> | 2016-06-21 14:29:22 +0300 |
---|---|---|
committer | Yaroslav Brustinov <ybrustin@cisco.com> | 2016-06-21 14:29:22 +0300 |
commit | 131bb55c38c0e59d14043766b0d3a38d5f775771 (patch) | |
tree | a977272a3290b32d903df39c3009e2521072aa93 | |
parent | b4a17c0d02d500a9a08a052b958160791279c023 (diff) |
--debug-image flag fix bug
-rwxr-xr-x | scripts/automation/trex_control_plane/stf/trex_stf_lib/trex_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/stf/trex_stf_lib/trex_client.py b/scripts/automation/trex_control_plane/stf/trex_stf_lib/trex_client.py index 91fe2075..57d19459 100755 --- a/scripts/automation/trex_control_plane/stf/trex_stf_lib/trex_client.py +++ b/scripts/automation/trex_control_plane/stf/trex_stf_lib/trex_client.py @@ -160,7 +160,7 @@ class CTRexClient(object): self.result_obj.clear_results() try: issue_time = time.time() - retval = self.server.start_trex(trex_cmd_options, user, block_to_success, timeout, self.debug_image) + retval = self.server.start_trex(trex_cmd_options, user, block_to_success, timeout, False, self.debug_image) except AppError as err: self._handle_AppError_exception(err.args[0]) except ProtocolError: |