From bdf22507ad335d57bbd25425072fea4025dc6dff Mon Sep 17 00:00:00 2001 From: Ravindran Padmanabhan Date: Wed, 22 Jan 2025 18:08:35 -0500 Subject: [PATCH] DAOS-15604 test: Address intermittent scrubber aggregation test failure. (#15696) Test-tag: TestScrubberEvictWithAggregation test_always_passes_hw Test-repeat: 3 Skip-unit-tests: true Summary: Pass the ior_timeout to avoid the test hanging under certain situations. Signed-off-by: Padmanabhan --- src/tests/ftest/util/scrubber_test_base.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tests/ftest/util/scrubber_test_base.py b/src/tests/ftest/util/scrubber_test_base.py index f3a828e366d..1616d5f5ac3 100644 --- a/src/tests/ftest/util/scrubber_test_base.py +++ b/src/tests/ftest/util/scrubber_test_base.py @@ -1,5 +1,6 @@ """ (C) Copyright 2021-2024 Intel Corporation. +(C) Copyright 2025 Hewlett Packard Enterprise Development LP SPDX-License-Identifier: BSD-2-Clause-Patent """ @@ -110,7 +111,8 @@ def run_ior_and_check_scrubber_status(self, pool, cont): process = threading.Thread(target=self.run_ior_with_pool, kwargs={"create_pool": True, "create_cont": False, - "fail_on_warning": True}) + "fail_on_warning": True, + "timeout": self.ior_timeout}) # Launch the IOR thread process.start() # Wait for the thread to finish