diff options
author | 2016-08-01 18:48:06 +0300 | |
---|---|---|
committer | 2016-08-01 18:48:06 +0300 | |
commit | 511854b7a8fe289603cb4475a39d713244846ebf (patch) | |
tree | 16efc4f16c93e4d0ad6351287d8710a9583cc4fa /scripts/automation/trex_control_plane/stl/trex_stl_lib | |
parent | 5add0c5625a0e46e1451806ca54070b5bcec7ccb (diff) |
Python3 support for Stateful daemon
Python 3.5 support in ZMQ
Verify ZMQ health in Stateful daemon
Add get_trex_config() command to Stateful daemon
Strip debug info on Python ZMQ .so files
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_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_ext.py b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_ext.py index ed0c393d..306302dc 100644 --- a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_ext.py +++ b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_ext.py @@ -54,7 +54,7 @@ def import_module_list(modules_list): print("Unable to find required module library: '{0}'".format(p['name'])) print("Please provide the correct path using TREX_STL_EXT_PATH variable") print("current path used: '{0}'".format(full_path)) - exit(0) + exit(1) sys.path.insert(1, full_path) |