From 1a0e24fac5ca0f4f5e5db42b7e60bd1c82b12c38 Mon Sep 17 00:00:00 2001 From: Yaroslav Brustinov Date: Mon, 14 Dec 2015 15:29:10 +0200 Subject: publish rx_check counters via ZMQ even with iom=0 --- scripts/automation/trex_control_plane/client/trex_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/automation/trex_control_plane/client') diff --git a/scripts/automation/trex_control_plane/client/trex_client.py b/scripts/automation/trex_control_plane/client/trex_client.py index e1130a97..49807014 100755 --- a/scripts/automation/trex_control_plane/client/trex_client.py +++ b/scripts/automation/trex_control_plane/client/trex_client.py @@ -88,7 +88,7 @@ class CTRexClient(object): finally: self.prompt_verbose_data() - def start_trex (self, f, d, block_to_success = True, timeout = 30, user = None, **trex_cmd_options): + def start_trex (self, f, d, block_to_success = True, timeout = 30, user = None, trex_development = False, **trex_cmd_options): """ Request to start a TRex run on server. @@ -125,7 +125,7 @@ class CTRexClient(object): user = user or self.__default_user try: d = int(d) - if d < 30: # specify a test should take at least 30 seconds long. + if d < 30 and not trex_development: # specify a test should take at least 30 seconds long. raise ValueError except ValueError: raise ValueError('d parameter must be integer, specifying how long TRex run, and must be larger than 30 secs.') -- cgit 1.2.3-korg