Skip to content

Commit

Permalink
DAOS-16464 test: Minor Review updates
Browse files Browse the repository at this point in the history
Test-tag: EcodOnlineRebuildMdtest
Test-repeat: 3
Skip-unit-tests: true
Skip-fault-injection-test: true

Signed-off-by: Padmanabhan <[email protected]>
  • Loading branch information
rpadma2 committed Jan 22, 2025
1 parent ecf0488 commit b9bdbdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/tests/ftest/erasurecode/online_rebuild_mdtest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ mdtest:
write_bytes: 524288
read_bytes: 524288
depth: 10
num_of_files_dirs: 100000009
num_of_files_dirs: 10000000
stonewall_timer: 30
# EC does not supported for directory so for now running with RP
dfs_dir_oclass: RP_3G1
Expand Down
4 changes: 1 addition & 3 deletions src/tests/ftest/util/ec_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ def _start_execute_mdtest(self, mdtest_result_queue):
"""
try:
result = self.execute_mdtest(mdtest_result_queue)
except (CommandFailure, DaosApiError, DaosTestError):
except Exception: # pylint: disable=broad-except
mdtest_result_queue.put('Mdtest Failed')
return result

Expand All @@ -444,8 +444,6 @@ def start_online_mdtest(self, ranks_to_stop):
"""
# Create the container and check the status
self.container = self.get_mdtest_container(self.pool)
if self.container is None:
self.fail("Container Create Failed")
# Create the MDtest run thread
job = threading.Thread(
target=self._start_execute_mdtest,
Expand Down

0 comments on commit b9bdbdd

Please sign in to comment.