@@ -1433,7 +1433,7 @@ async def test_migration_with_key_ttl(df_factory):
1433
1433
assert await nodes [1 ].client .execute_command ("stick k_sticky" ) == 0
1434
1434
1435
1435
1436
- @dfly_args ({"proactor_threads" : 4 , "cluster_mode" : "yes" , "serialization_max_chunk_size" : 0 })
1436
+ @dfly_args ({"proactor_threads" : 4 , "cluster_mode" : "yes" })
1437
1437
async def test_network_disconnect_during_migration (df_factory ):
1438
1438
instances = [
1439
1439
df_factory .create (port = next (next_port ), admin_port = next (next_port )) for i in range (2 )
@@ -1472,7 +1472,7 @@ async def test_network_disconnect_during_migration(df_factory):
1472
1472
1473
1473
await proxy .start ()
1474
1474
1475
- await wait_for_status (nodes [0 ].admin_client , nodes [1 ].id , "FINISHED" , 60 )
1475
+ await wait_for_status (nodes [0 ].admin_client , nodes [1 ].id , "FINISHED" , 300 )
1476
1476
nodes [0 ].migrations = []
1477
1477
nodes [0 ].slots = []
1478
1478
nodes [1 ].slots = [(0 , 16383 )]
@@ -1970,7 +1970,7 @@ async def node1size0():
1970
1970
assert str (i ) == await nodes [1 ].client .get (f"{{key50}}:{ i } " )
1971
1971
1972
1972
1973
- @dfly_args ({"proactor_threads" : 2 , "cluster_mode" : "yes" , "serialization_max_chunk_size" : 0 })
1973
+ @dfly_args ({"proactor_threads" : 2 , "cluster_mode" : "yes" })
1974
1974
@pytest .mark .asyncio
1975
1975
async def test_cluster_migration_huge_container (df_factory : DflyInstanceFactory ):
1976
1976
instances = [
@@ -2003,7 +2003,7 @@ async def test_cluster_migration_huge_container(df_factory: DflyInstanceFactory)
2003
2003
await push_config (json .dumps (generate_config (nodes )), [node .admin_client for node in nodes ])
2004
2004
2005
2005
logging .debug ("Waiting for migration to finish" )
2006
- await wait_for_status (nodes [0 ].admin_client , nodes [1 ].id , "FINISHED" )
2006
+ await wait_for_status (nodes [0 ].admin_client , nodes [1 ].id , "FINISHED" , 30 )
2007
2007
2008
2008
target_data = await StaticSeeder .capture (nodes [1 ].client )
2009
2009
assert source_data == target_data
@@ -2433,7 +2433,7 @@ async def test_cluster_memory_consumption_migration(df_factory: DflyInstanceFact
2433
2433
2434
2434
2435
2435
@pytest .mark .asyncio
2436
- @dfly_args ({"proactor_threads" : 4 , "cluster_mode" : "yes" , "serialization_max_chunk_size" : 0 })
2436
+ @dfly_args ({"proactor_threads" : 4 , "cluster_mode" : "yes" })
2437
2437
async def test_migration_timeout_on_sync (df_factory : DflyInstanceFactory , df_seeder_factory ):
2438
2438
# Timeout set to 3 seconds because we must first saturate the socket before we get the timeout
2439
2439
instances = [
0 commit comments