From: Rishabh Dave Date: Thu, 4 May 2023 13:13:43 +0000 (+0530) Subject: qa/cephfs: update ceph_fuse.py to fix bug introduced by commit b05b886 X-Git-Tag: v16.2.14~158^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F51344%2Fhead;p=ceph.git 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 --- diff --git a/qa/tasks/ceph_fuse.py b/qa/tasks/ceph_fuse.py index d2db2973220d..2712229f9723 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()