mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-06-06 20:24:51 +00:00
tests: Do not set by default netlink receive buffer size for Zebra
If we want to override this value - we can't because it's set by default to 90000000. Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
This commit is contained in:
parent
35dbbacc3b
commit
6dc03df8cb
@ -1903,7 +1903,7 @@ class Router(Node):
|
|||||||
tail_log_files = []
|
tail_log_files = []
|
||||||
check_daemon_files = []
|
check_daemon_files = []
|
||||||
|
|
||||||
def start_daemon(daemon, extra_opts=None):
|
def start_daemon(daemon):
|
||||||
daemon_opts = self.daemons_options.get(daemon, "")
|
daemon_opts = self.daemons_options.get(daemon, "")
|
||||||
|
|
||||||
# get pid and vty filenames and remove the files
|
# get pid and vty filenames and remove the files
|
||||||
@ -1998,9 +1998,6 @@ class Router(Node):
|
|||||||
"{}/{}/{}.log".format(self.logdir, self.name, daemon)
|
"{}/{}/{}.log".format(self.logdir, self.name, daemon)
|
||||||
)
|
)
|
||||||
|
|
||||||
if extra_opts:
|
|
||||||
cmdopt += " " + extra_opts
|
|
||||||
|
|
||||||
if do_gdb_or_rr(True) and do_gdb_or_rr(False):
|
if do_gdb_or_rr(True) and do_gdb_or_rr(False):
|
||||||
logger.warning("cant' use gdb and rr at same time")
|
logger.warning("cant' use gdb and rr at same time")
|
||||||
|
|
||||||
@ -2237,7 +2234,7 @@ class Router(Node):
|
|||||||
|
|
||||||
# Start Zebra after mgmtd
|
# Start Zebra after mgmtd
|
||||||
if "zebra" in daemons_list:
|
if "zebra" in daemons_list:
|
||||||
start_daemon("zebra", "-s 90000000")
|
start_daemon("zebra")
|
||||||
while "zebra" in daemons_list:
|
while "zebra" in daemons_list:
|
||||||
daemons_list.remove("zebra")
|
daemons_list.remove("zebra")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user