From: Patrick Donnelly Date: Tue, 10 Dec 2019 21:24:50 +0000 (-0800) Subject: qa: reduce cache size further X-Git-Tag: v15.1.0~547^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=59f641e2958af3a6a94f151b60d362ed722d67c9;p=ceph-ci.git qa: reduce cache size further 1M isn't low enough to trigger recall/trimming. Signed-off-by: Patrick Donnelly --- diff --git a/qa/tasks/cephfs/test_client_limits.py b/qa/tasks/cephfs/test_client_limits.py index 75f7a68415f..7b496d751e3 100644 --- a/qa/tasks/cephfs/test_client_limits.py +++ b/qa/tasks/cephfs/test_client_limits.py @@ -40,7 +40,7 @@ class TestClientLimits(CephFSTestCase): # Set MDS cache memory limit to a low value that will make the MDS to # ask the client to trim the caps. - cache_memory_limit = "1M" + cache_memory_limit = "1K" self.set_conf('mds', 'mds_cache_memory_limit', cache_memory_limit) self.set_conf('mds', 'mds_recall_max_caps', open_files/2)