Skip to content

Commit

Permalink
chore: increase load in test_noreply_pipeline (#3960)
Browse files Browse the repository at this point in the history
Test is flaky because it relies that the producer (the pytest) to send fast enough a bunch of commands before they get dispatched synchronously so I increased the load.
  • Loading branch information
kostasrim authored Oct 22, 2024
1 parent dec0712 commit 37fec87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/dragonfly/pymemcached_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_noreply_pipeline(df_server: DflyInstance, memcached_client: MCClient):
so all the commands are pipelined. Assert pipelines work correctly and the
succeeding regular command receives a reply (it should join the pipeline as last).
"""
keys = [f"k{i}" for i in range(200)]
keys = [f"k{i}" for i in range(2000)]
values = [f"d{i}" for i in range(len(keys))]

for k, v in zip(keys, values):
Expand Down

0 comments on commit 37fec87

Please sign in to comment.