diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2024-11-01 10:00:18 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-01 10:00:18 -0400 |
| commit | eded1e9c76e88bd8a54863786897143f51efea81 (patch) | |
| tree | 92bc85080d253ec565431a4baf34bc7bd9b028d8 | |
| parent | 23c92ed04f055c002bf0da7a683efcfa1a9ef58b (diff) | |
| parent | 6dc03df8cb7b6ce658085f93b38d67c5e512abd8 (diff) | |
Merge pull request #17328 from opensourcerouting/fix/allow_setting_netlink_buffer_size_for_zebra
tests: Do not set by default netlink receive buffer size for Zebra
| -rw-r--r-- | tests/topotests/lib/topotest.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/topotests/lib/topotest.py b/tests/topotests/lib/topotest.py index bd98958355..42d51853e0 100644 --- a/tests/topotests/lib/topotest.py +++ b/tests/topotests/lib/topotest.py @@ -1903,7 +1903,7 @@ class Router(Node): tail_log_files = [] check_daemon_files = [] - def start_daemon(daemon, extra_opts=None): + def start_daemon(daemon): daemon_opts = self.daemons_options.get(daemon, "") # get pid and vty filenames and remove the files @@ -1998,9 +1998,6 @@ class Router(Node): "{}/{}/{}.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): logger.warning("cant' use gdb and rr at same time") @@ -2237,7 +2234,7 @@ class Router(Node): # Start Zebra after mgmtd if "zebra" in daemons_list: - start_daemon("zebra", "-s 90000000") + start_daemon("zebra") while "zebra" in daemons_list: daemons_list.remove("zebra") |
