diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-08-25 08:00:56 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-25 08:00:56 -0400 |
| commit | ce26564ed497a0c907dd98ba528edbefffe65fa2 (patch) | |
| tree | b40e11c533bed2ce26ea2626f783ab0d70325adb | |
| parent | bcbd5081e767ed34e7a650561ccd9f17a968095f (diff) | |
| parent | 8e72eff7d8a43c6222a975fb31cb615abc46e3d3 (diff) | |
Merge pull request #6975 from opensourcerouting/topotest-zebra-nl-buf-size
topotests: bump zebra netlink socket buffer size
| -rw-r--r-- | tests/topotests/lib/topotest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/lib/topotest.py b/tests/topotests/lib/topotest.py index b5fa2ea59b..766ab71ed1 100644 --- a/tests/topotests/lib/topotest.py +++ b/tests/topotests/lib/topotest.py @@ -1265,7 +1265,7 @@ class Router(Node): zebra_path = os.path.join(self.daemondir, "zebra") zebra_option = self.daemons_options["zebra"] self.cmd( - "{0} {1} --log stdout --log-level debug -d > zebra.out 2> zebra.err".format( + "{0} {1} --log stdout --log-level debug -s 90000000 -d > zebra.out 2> zebra.err".format( zebra_path, zebra_option, self.logdir, self.name ) ) |
