From c4685f702efc026a22be47587217bc08415b09f8 Mon Sep 17 00:00:00 2001 From: Rishabh Dave Date: Thu, 25 Feb 2021 16:20:49 +0530 Subject: [PATCH] qa/ceph_fuse: don't use createfs anymore while mounting createfs was removed codebase since it didn't created FS regardless of its value. Signed-off-by: Rishabh Dave --- qa/tasks/ceph_fuse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/ceph_fuse.py b/qa/tasks/ceph_fuse.py index 03ea7eadff7..67432ead41d 100644 --- a/qa/tasks/ceph_fuse.py +++ b/qa/tasks/ceph_fuse.py @@ -158,7 +158,7 @@ def task(ctx, config): mount_x.cephfs_mntpt = config.get("mount_path") if config.get("mountpoint"): mount_x.hostfs_mntpt = config.get("mountpoint") - mount_x.mount(createfs=False) + mount_x.mount() for info in mounted_by_me.values(): info["mount"].wait_until_mounted() -- 2.47.3