From: David Casier Date: Mon, 22 Jul 2019 21:40:35 +0000 (+0200) Subject: mgr/dashboard: ganesha: Specify the name of the filesystem for creating a path X-Git-Tag: v15.1.0~2040^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=77dfc44705daa4114e69e0eae87d0b975f7f5a41;p=ceph-ci.git mgr/dashboard: ganesha: Specify the name of the filesystem for creating a path Signed-off-by: David Casier --- diff --git a/src/pybind/mgr/dashboard/services/ganesha.py b/src/pybind/mgr/dashboard/services/ganesha.py index 4053d20c1ca..4a525a54da7 100644 --- a/src/pybind/mgr/dashboard/services/ganesha.py +++ b/src/pybind/mgr/dashboard/services/ganesha.py @@ -486,7 +486,7 @@ class CephFSFSal(FSal): self.cephx_key = CephX.get_client_key(self.user_id) def create_path(self, path): - cfs = CephFS() + cfs = CephFS(self.fs_name) if not cfs.dir_exists(path): cfs.mkdirs(path)