diff --git a/tests/rptest/tests/full_disk_test.py b/tests/rptest/tests/full_disk_test.py index e6628d7404374..a3fac4297fadd 100644 --- a/tests/rptest/tests/full_disk_test.py +++ b/tests/rptest/tests/full_disk_test.py @@ -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()