Skip to content

Commit

Permalink
Merge pull request #13151 from vbotbuildovich/backport-pr-12023-v23.2…
Browse files Browse the repository at this point in the history
….x-768

[v23.2.x] t/full_disk_test: longer timeout in debug_mode
  • Loading branch information
andijcr authored Aug 31, 2023
2 parents 77dd8fc + 42e8832 commit 2f9ceb2
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 2f9ceb2

Please sign in to comment.