From e4cd74190a01b39a4d9564eed632d0bbc7b5f7a8 Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Wed, 17 Mar 2021 16:50:12 -0700 Subject: [PATCH] Fix halt_on_error mistakes Signed-off-by: Matthew Stidham --- py-json/mac_vlan_profile.py | 2 +- py-json/multicast_profile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/py-json/mac_vlan_profile.py b/py-json/mac_vlan_profile.py index 396b3393..edfbdc82 100644 --- a/py-json/mac_vlan_profile.py +++ b/py-json/mac_vlan_profile.py @@ -20,7 +20,7 @@ class MACVLANProfile(LFCliBase): admin_down=False, dhcp=False, debug_=False): - super().__init__(lfclient_host, lfclient_port, debug_, _halt_on_error=True) + super().__init__(lfclient_host, lfclient_port, debug_) self.local_realm = local_realm self.num_macvlans = num_macvlans self.macvlan_parent = macvlan_parent diff --git a/py-json/multicast_profile.py b/py-json/multicast_profile.py index 3d384ae3..21b3d02f 100644 --- a/py-json/multicast_profile.py +++ b/py-json/multicast_profile.py @@ -17,7 +17,7 @@ class MULTICASTProfile(LFCliBase): :param number_template_: how many zeros wide we padd, possibly a starting integer with left padding :param debug_: """ - super().__init__(lfclient_host, lfclient_port, debug_, _halt_on_error=True) + super().__init__(lfclient_host, lfclient_port, debug_) self.lfclient_url = "http://%s:%s" % (lfclient_host, lfclient_port) self.debug = debug_ self.local_realm = local_realm