Skip to content
This repository has been archived by the owner on Jul 25, 2022. It is now read-only.

Fix client mount in run_stratagem #2085

Merged
merged 2 commits into from
Jul 20, 2020
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
2 changes: 1 addition & 1 deletion chroma_core/services/job_scheduler/job_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1891,7 +1891,7 @@ def run_stratagem(self, mdts, fs_id, stratagem_data):

mountpoint = "/mnt/{}".format(filesystem.name)
if not client_mount_exists:
self._create_client_mount(client_host, filesystem, mountpoint)
self._create_client_mount(client_host, filesystem.name, mountpoint)

client_mount = ObjectCache.get_one(
LustreClientMount, lambda mnt: mnt.host_id == client_host.id and mnt.filesystem == filesystem.name
Expand Down