From: Venky Shankar Date: Thu, 29 Feb 2024 10:31:24 +0000 (+0530) Subject: reef: use raw_cluster_cmd instead of run_ceph_cmd X-Git-Tag: testing/wip-pdonnell-testing-20240430.123648-reef-debug~203^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=03634187a63a477cf5b8dbe65752f93f3480e06f;p=ceph-ci.git 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 --- diff --git a/qa/tasks/cephfs/filesystem.py b/qa/tasks/cephfs/filesystem.py index a3ef9f1ec10..f3aa023cbb6 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']):