From 994ae0d633843e61eae91f409ec3b0336db71dc3 Mon Sep 17 00:00:00 2001 From: Milind Changire Date: Mon, 13 Nov 2023 12:56:50 +0530 Subject: [PATCH] qa: use correct imports to resolve fuse_mount and kernel_mount Fixes: https://tracker.ceph.com/issues/62706 Signed-off-by: Milind Changire --- qa/tasks/cephfs/test_snap_schedules.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/tasks/cephfs/test_snap_schedules.py b/qa/tasks/cephfs/test_snap_schedules.py index d82404982dd89..8f9132566da51 100644 --- a/qa/tasks/cephfs/test_snap_schedules.py +++ b/qa/tasks/cephfs/test_snap_schedules.py @@ -588,8 +588,8 @@ class TestSnapSchedulesSnapdir(TestSnapSchedulesHelper): self.mount_a.run_shell(['rmdir', snapshot_path]) def get_snap_dir_name(self): - from tasks.cephfs.fuse_mount import FuseMount - from tasks.cephfs.kernel_mount import KernelMount + from .fuse_mount import FuseMount + from .kernel_mount import KernelMount if isinstance(self.mount_a, KernelMount): sdn = self.mount_a.client_config.get('snapdirname', '.snap') -- 2.39.5