From 5856a1e6b72dc77d3b4d9109385481b924e4fe36 Mon Sep 17 00:00:00 2001 From: Venky Shankar Date: Mon, 9 Oct 2023 09:59:45 +0530 Subject: [PATCH] qa: typo fix when checking for perf counter - s/md_thresh_evicted/mdthresh_evicted Signed-off-by: Venky Shankar --- qa/tasks/cephfs/test_client_limits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/cephfs/test_client_limits.py b/qa/tasks/cephfs/test_client_limits.py index 2a4c8e79e2f88..6961f4c72183b 100644 --- a/qa/tasks/cephfs/test_client_limits.py +++ b/qa/tasks/cephfs/test_client_limits.py @@ -284,7 +284,7 @@ def test_client_blocklisted_oldest_tid(self): self.mds_cluster.is_addr_blocklisted(self.mount_a.get_global_addr()) # the mds should bump up the relevant perf counter pd = self.perf_dump() - self.assertGreater(pd['mds_sessions']['md_thresh_evicted'], 0) + self.assertGreater(pd['mds_sessions']['mdthresh_evicted'], 0) # reset the config self.config_set('client', 'client inject fixed oldest tid', 'false')