From 8e72eff7d8a43c6222a975fb31cb615abc46e3d3 Mon Sep 17 00:00:00 2001 From: Rafael Zalamena Date: Mon, 24 Aug 2020 07:29:23 -0300 Subject: [PATCH] topotests: bump zebra netlink socket buffer size Use the same value as we use in production release configuration. Signed-off-by: Rafael Zalamena --- tests/topotests/lib/topotest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) ) -- 2.39.5