From 23364fe4388befe98d63f8c4d00b897616942f49 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Fri, 7 Aug 2020 14:51:09 -0700 Subject: [PATCH] qa: skip cache_size check Now that we're using the memory limit, this is check is not necessary. Signed-off-by: Patrick Donnelly --- qa/tasks/cephfs/test_client_limits.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/qa/tasks/cephfs/test_client_limits.py b/qa/tasks/cephfs/test_client_limits.py index 5786cad384d62..e32259795cb66 100644 --- a/qa/tasks/cephfs/test_client_limits.py +++ b/qa/tasks/cephfs/test_client_limits.py @@ -86,8 +86,6 @@ class TestClientLimits(CephFSTestCase): num_caps = self.get_session(mount_a_client_id)['num_caps'] if num_caps <= mds_min_caps_per_client: return True - elif num_caps < cache_size: - return True else: return False -- 2.47.3