From 03634187a63a477cf5b8dbe65752f93f3480e06f Mon Sep 17 00:00:00 2001 From: Venky Shankar Date: Thu, 29 Feb 2024 16:01:24 +0530 Subject: [PATCH] reef: use raw_cluster_cmd instead of run_ceph_cmd Due to https://github.com/ceph/ceph/pull/50569 not being backported Signed-off-by: Venky Shankar --- qa/tasks/cephfs/filesystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/cephfs/filesystem.py b/qa/tasks/cephfs/filesystem.py index a3ef9f1ec104..f3aa023cbb62 100644 --- a/qa/tasks/cephfs/filesystem.py +++ b/qa/tasks/cephfs/filesystem.py @@ -759,7 +759,7 @@ class Filesystem(MDSCluster): assert(isinstance(subvols['create'], int)) assert(subvols['create'] > 0) - self.run_ceph_cmd('fs', 'subvolumegroup', 'create', self.name, 'qa') + self.mon_manager.raw_cluster_cmd('fs', 'subvolumegroup', 'create', self.name, 'qa') subvol_options = self.fs_config.get('subvol_options', '') for sv in range(0, subvols['create']): -- 2.47.3