diff --git a/qa/tasks/cephfs/cephfs_test_case.py b/qa/tasks/cephfs/cephfs_test_case.py index 036986b54b0..db573f3ade2 100644 --- a/qa/tasks/cephfs/cephfs_test_case.py +++ b/qa/tasks/cephfs/cephfs_test_case.py @@ -7,7 +7,6 @@ from shlex import split as shlex_split from io import StringIO from tasks.ceph_test_case import CephTestCase -from tasks.cephfs.fuse_mount import FuseMount from teuthology import contextutil from teuthology.misc import sudo_write_file @@ -107,13 +106,6 @@ class CephFSTestCase(CephTestCase): len(self.mounts), self.CLIENTS_REQUIRED )) - if self.REQUIRE_KCLIENT_REMOTE: - if not isinstance(self.mounts[0], FuseMount) or not isinstance(self.mounts[1], FuseMount): - # kclient kill() power cycles nodes, so requires clients to each be on - # their own node - if self.mounts[0].client_remote.hostname == self.mounts[1].client_remote.hostname: - self.skipTest("kclient clients must be on separate nodes") - if self.REQUIRE_ONE_CLIENT_REMOTE: if self.mounts[0].client_remote.hostname in self.mds_cluster.get_mds_hostnames(): self.skipTest("Require first client to be on separate server from MDSs")