From 17651b2610eb4dd79d17915302df9fbb41b8d9c4 Mon Sep 17 00:00:00 2001 From: Borys Date: Thu, 5 Dec 2024 15:04:58 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20test=5Fnetwork=5Fdisconnect=5Fduring=5Fm?= =?UTF-8?q?igration=20data=20size=20was=20too=20big=20f=E2=80=A6=20(#4260)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: test_network_disconnect_during_migration data size was too big for timeout --- tests/dragonfly/cluster_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dragonfly/cluster_test.py b/tests/dragonfly/cluster_test.py index 3173e304d..38156e9a2 100644 --- a/tests/dragonfly/cluster_test.py +++ b/tests/dragonfly/cluster_test.py @@ -1438,7 +1438,7 @@ async def test_network_disconnect_during_migration(df_factory): await push_config(json.dumps(generate_config(nodes)), [node.admin_client for node in nodes]) - await StaticSeeder(key_target=200000).run(nodes[0].client) + await StaticSeeder(key_target=100000).run(nodes[0].client) start_capture = await StaticSeeder.capture(nodes[0].client) proxy = Proxy("127.0.0.1", 1111, "127.0.0.1", nodes[1].instance.admin_port)