]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr: fix the desc typo for mds PyCFunction methods 40488/head
authorXiubo Li <xiubli@redhat.com>
Tue, 30 Mar 2021 05:23:07 +0000 (13:23 +0800)
committerXiubo Li <xiubli@redhat.com>
Tue, 30 Mar 2021 05:23:07 +0000 (13:23 +0800)
Signed-off-by: Xiubo Li <xiubli@redhat.com>
src/mgr/BaseMgrModule.cc

index 695565183f057d76df9bc135e01f21c00ce84e9b..5acd93ed3bf49688fd711aa2da56343f3c7724b6 100644 (file)
@@ -1488,13 +1488,13 @@ PyMethodDef BaseMgrModule_methods[] = {
     METH_VARARGS, "Get osd perf counters"},
 
   {"_ceph_add_mds_perf_query", (PyCFunction)ceph_add_mds_perf_query,
-    METH_VARARGS, "Add an osd perf query"},
+    METH_VARARGS, "Add an mds perf query"},
 
   {"_ceph_remove_mds_perf_query", (PyCFunction)ceph_remove_mds_perf_query,
-    METH_VARARGS, "Remove an osd perf query"},
+    METH_VARARGS, "Remove an mds perf query"},
 
   {"_ceph_get_mds_perf_counters", (PyCFunction)ceph_get_mds_perf_counters,
-    METH_VARARGS, "Get osd perf counters"},
+    METH_VARARGS, "Get mds perf counters"},
 
   {"_ceph_is_authorized", (PyCFunction)ceph_is_authorized,
     METH_VARARGS, "Verify the current session caps are valid"},