From 42e88324b145183670e5dcb6f31089c8621ab1b6 Mon Sep 17 00:00:00 2001 From: Andrea Barbadoro Date: Tue, 11 Jul 2023 15:43:57 +0200 Subject: [PATCH] t/full_disk_test: longer timeout in debug_mode (cherry picked from commit 34dafcd88692cb52ea3af36e695ecfd8c5e05292) --- tests/rptest/tests/full_disk_test.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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()