Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DAOS-15604 test: Address intermittent scrubber aggregation test failure. #15696

Merged
merged 6 commits into from
Jan 22, 2025
4 changes: 3 additions & 1 deletion src/tests/ftest/util/scrubber_test_base.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""
(C) Copyright 2021-2024 Intel Corporation.

Check failure on line 2 in src/tests/ftest/util/scrubber_test_base.py

View workflow job for this annotation

GitHub Actions / Copyright check

Copyright out of date
(C) Copyright 2025 Hewlett Packard Enterprise Development LP
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copyright out of date

The copyright check is failing because you committed with an intel email address. You should update to use hpe

git config user.email <email>


SPDX-License-Identifier: BSD-2-Clause-Patent
"""
Expand Down Expand Up @@ -110,7 +111,8 @@
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
Expand Down
Loading