From 0bd7f8a10f1a1df33886fca9fb52d352ab1e0224 Mon Sep 17 00:00:00 2001 From: Chuck SmileyRekiere Date: Thu, 22 Apr 2021 14:47:06 -0600 Subject: [PATCH] test_l3_scenario_throughput.py test_l3_unicatst_traffic_gen.py : deprecated _halt_on_error Signed-off-by: Chuck SmileyRekiere --- py-scripts/test_l3_scenario_throughput.py | 4 ++-- py-scripts/test_l3_unicast_traffic_gen.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/py-scripts/test_l3_scenario_throughput.py b/py-scripts/test_l3_scenario_throughput.py index 0494c2bd..d36caf5f 100755 --- a/py-scripts/test_l3_scenario_throughput.py +++ b/py-scripts/test_l3_scenario_throughput.py @@ -96,7 +96,7 @@ class Login_DUT: # Class to Load a Scenario that has been Created in Chamber View saved under DB/[Database_Name] class LoadScenario(LFCliBase): def __init__(self, host, port, db_name, security_debug_on=False, _exit_on_error=False,_exit_on_fail=False): - super().__init__(host, port, _debug=security_debug_on, _halt_on_error=_exit_on_error, _exit_on_fail=_exit_on_fail) + super().__init__(host, port, _debug=security_debug_on, _exit_on_fail=_exit_on_fail) self.host = host self.port = port self.json_post("/cli-json/load", { "name": db_name, "action": 'overwrite' }) @@ -203,7 +203,7 @@ class VAP_Measure(LFCliBase): # Added Standard Function to Fetch L3 CX and VAP Directly class FindPorts(LFCliBase): def __init__(self, host, port, security_debug_on=False, _exit_on_error=False,_exit_on_fail=False): - super().__init__(host, port, _debug=security_debug_on, _halt_on_error=_exit_on_error, _exit_on_fail=_exit_on_fail) + super().__init__(host, port, _debug=security_debug_on, _exit_on_fail=_exit_on_fail) self.host = host self.port = port diff --git a/py-scripts/test_l3_unicast_traffic_gen.py b/py-scripts/test_l3_unicast_traffic_gen.py index ad9ad69b..3ef31fae 100755 --- a/py-scripts/test_l3_unicast_traffic_gen.py +++ b/py-scripts/test_l3_unicast_traffic_gen.py @@ -26,7 +26,7 @@ class L3VariableTimeLongevity(LFCliBase): _debug_on=False, _exit_on_error=False, _exit_on_fail=False): - super().__init__(host, port, _debug=_debug_on, _halt_on_error=_exit_on_error, _exit_on_fail=_exit_on_fail) + super().__init__(host, port, _debug=_debug_on, _exit_on_fail=_exit_on_fail) self.host = host self.port = port self.endp_type = endp_type