Skip to content

Commit 4fd6ba6

Browse files
authored
fix: Increase key count to make test more robust (#3286)
1 parent 2f09055 commit 4fd6ba6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/dragonfly/replication_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2061,7 +2061,7 @@ async def test_saving_replica(df_factory):
20612061
c_master = master.client()
20622062
c_replica = replica.client()
20632063

2064-
await c_master.execute_command("DEBUG POPULATE 10000 key 4048 RAND")
2064+
await c_master.execute_command("DEBUG POPULATE 100000 key 4048 RAND")
20652065
await c_replica.execute_command(f"REPLICAOF localhost {master.port}")
20662066
await wait_available_async(c_replica)
20672067

@@ -2093,7 +2093,7 @@ async def test_start_replicating_while_save(df_factory):
20932093
c_master = master.client()
20942094
c_replica = replica.client()
20952095

2096-
await c_replica.execute_command("DEBUG POPULATE 10000 key 4096 RAND")
2096+
await c_replica.execute_command("DEBUG POPULATE 100000 key 4096 RAND")
20972097

20982098
async def save_replica():
20992099
await c_replica.execute_command("save")

0 commit comments

Comments
 (0)