From 48c5e4531b635d8554894b8c16a89661436d786b Mon Sep 17 00:00:00 2001 From: Rishabh Dave Date: Thu, 4 May 2023 18:43:43 +0530 Subject: [PATCH] qa/cephfs: update ceph_fuse.py to fix bug introduced by commit b05b886 Commit b05b886 removes createfs flag which breaks ceph_fuse.py. Update ceph_fuse.py accordingly. 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 d2db2973220d9..2712229f97231 100644 --- a/qa/tasks/ceph_fuse.py +++ b/qa/tasks/ceph_fuse.py @@ -156,7 +156,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.39.5