Fix halt_on_error mistakes

Signed-off-by: Matthew Stidham <stidmatt@protonmail.com>
This commit is contained in:
Matthew Stidham
2021-03-17 16:50:12 -07:00
parent e1a865f946
commit e4cd74190a
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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