From b814630794abccb31f05e1efcd3b9f3e35cd3bec Mon Sep 17 00:00:00 2001 From: Milind Changire Date: Wed, 4 May 2022 12:53:57 +0530 Subject: [PATCH] qa: remove spurious argument to snap-schedule status command Removing the subvol support exposed a spurious argument to the status command which was assgned to the 'subvol' parameter but was unused in this command implementation. The spurious argument is now removed. Signed-off-by: Milind Changire --- qa/tasks/cephfs/test_snap_schedules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/cephfs/test_snap_schedules.py b/qa/tasks/cephfs/test_snap_schedules.py index 388e38135ba7..740cb81e4245 100644 --- a/qa/tasks/cephfs/test_snap_schedules.py +++ b/qa/tasks/cephfs/test_snap_schedules.py @@ -362,7 +362,7 @@ class TestSnapSchedules(CephFSTestCase): log.debug(f'snapshots: {snapshots}'); result = self.fs_snap_schedule_cmd('status', path=dir_path, - snap_schedule='1M', format='json') + format='json') json_res = json.loads(result)[0] db_count = int(json_res['created_count']) log.debug(f'json_res: {json_res}') -- 2.47.3