From 13a7c0fe23ae3acd861c9b583ad52b90112e69b4 Mon Sep 17 00:00:00 2001 From: Joy John Pinto <86055382+pintojoy@users.noreply.github.com> Date: Thu, 2 Nov 2023 16:30:26 +0530 Subject: [PATCH] Update test_fio_benchmark.py Ran few local tests to find suitable timeout value, Based on the results updating timeout value to 120000, will change in future if needs to be changed --- tests/e2e/performance/io_workload/test_fio_benchmark.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/e2e/performance/io_workload/test_fio_benchmark.py b/tests/e2e/performance/io_workload/test_fio_benchmark.py index 8c930ec931f..19b8b98993b 100644 --- a/tests/e2e/performance/io_workload/test_fio_benchmark.py +++ b/tests/e2e/performance/io_workload/test_fio_benchmark.py @@ -321,8 +321,9 @@ def run(self): else: sleeptime = 300 - self.wait_for_wl_to_finish(sleep=sleeptime, timeout=42000) - + self.wait_for_wl_to_finish(sleep=sleeptime, timeout=120000) + #timeout original value is 36000 + try: if "Fio failed to execute" not in self.test_logs: log.info("FIO has completed successfully")