Skip to content

Commit

Permalink
Merge pull request #11382 from mmaslankaprv/fix-10497
Browse files Browse the repository at this point in the history
Limited throughput for debug builds in `partition_move_interruption` test
  • Loading branch information
mmaslankaprv authored Jun 14, 2023
2 parents 2ae09cc + df11ce4 commit 422e30f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/rptest/tests/partition_move_interruption_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def __init__(self, ctx, *args, **kwargs):
self.consumer_timeout_seconds = 90

if os.environ.get('BUILD_TYPE', None) == 'debug':
self.throughput = 1000
self.min_records = 10000
self.throughput = 500
self.min_records = 5000
else:
self.throughput = 10000
self.min_records = 100000
Expand Down

0 comments on commit 422e30f

Please sign in to comment.