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-16406 test: file_count_test_base.py - Don't obtain dfuse mount_d… #15023

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/tests/ftest/util/file_count_test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def run_file_count(self):
dir_oclass = None
apis = self.params.get("api", "/run/largefilecount/*")
hdf5_plugin_path = self.params.get("plugin_path", '/run/hdf5_vol/*')
mount_dir = self.params.get("mount_dir", "/run/dfuse/*")
ior_np = self.params.get("np", '/run/ior/client_processes/*', 1)
ior_ppn = self.params.get("ppn", '/run/ior/client_processes/*', None)
mdtest_np = self.params.get("np", '/run/mdtest/client_processes/*', 1)
Expand Down Expand Up @@ -119,8 +118,7 @@ def run_file_count(self):
self.ppn = ior_ppn
if api == 'HDF5-VOL':
self.ior_cmd.api.update('HDF5')
self.run_ior_with_pool(
create_pool=False, plugin_path=hdf5_plugin_path, mount_dir=mount_dir)
self.run_ior_with_pool(create_pool=False, plugin_path=hdf5_plugin_path)
elif self.ior_cmd.api.value == 'POSIX':
self.run_ior_with_pool(create_pool=False, intercept=intercept)
else:
Expand Down
Loading