From: Venky Shankar Date: Mon, 9 Oct 2023 04:29:45 +0000 (+0530) Subject: qa: typo fix when checking for perf counter - s/md_thresh_evicted/mdthresh_evicted X-Git-Tag: v17.2.7~50^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7acfefc126da1baffe2bbfbca366eaef8c566a87;p=ceph.git qa: typo fix when checking for perf counter - s/md_thresh_evicted/mdthresh_evicted Signed-off-by: Venky Shankar (cherry picked from commit 5856a1e6b72dc77d3b4d9109385481b924e4fe36) --- diff --git a/qa/tasks/cephfs/test_client_limits.py b/qa/tasks/cephfs/test_client_limits.py index c94dbc6af197..1f343aef4078 100644 --- a/qa/tasks/cephfs/test_client_limits.py +++ b/qa/tasks/cephfs/test_client_limits.py @@ -260,7 +260,7 @@ class TestClientLimits(CephFSTestCase): 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')