Skip to content

Commit

Permalink
t/full_disk_test: longer timeout in debug_mode
Browse files Browse the repository at this point in the history
(cherry picked from commit 34dafcd)
  • Loading branch information
andijcr authored and vbotbuildovich committed Aug 31, 2023
1 parent c8ed0e4 commit 42e8832
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/rptest/tests/full_disk_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,11 @@ def test_full_disk_no_produce(self):
self.full_disk.trigger_low_space()

# confirm we were blocked from producing
not_producing = RateTarget(max_total_sec=40,
target_sec=5,
target_min_rate=0,
target_max_rate=1)
not_producing = RateTarget(
max_total_sec=40 if not self.debug_mode else 100,
target_sec=5,
target_min_rate=0,
target_max_rate=1)
self.bytes_prod.expect_rate(not_producing)

self.full_disk.clear_low_space()
Expand Down

0 comments on commit 42e8832

Please sign in to comment.