]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
mds:fix typo in MDSRank
authorlvshanchun <lvshanchun@gmail.com>
Tue, 27 Feb 2018 12:24:04 +0000 (20:24 +0800)
committerlvshanchun <lvshanchun@gmail.com>
Tue, 27 Feb 2018 12:24:04 +0000 (20:24 +0800)
Signed-off-by: lvshanchun <lvshanchun@gmail.com>
src/mds/MDSRank.cc

index 690d44e56581fbfd12878b57e7b198ee24f2f9ad..bda5a600b96f287a0762401b45ef8d6f89d9fdb4 100644 (file)
@@ -1845,22 +1845,22 @@ bool MDSRankDispatcher::handle_asok_command(
              command == "ops") {
     if (!op_tracker.dump_ops_in_flight(f)) {
       ss << "op_tracker tracking is not enabled now, so no ops are tracked currently, even those get stuck. \
-         please enable \"osd_enable_op_tracker\", and the tracker will start to track new ops received afterwards.";
+         please enable \"mds_enable_op_tracker\", and the tracker will start to track new ops received afterwards.";
     }
   } else if (command == "dump_blocked_ops") {
     if (!op_tracker.dump_ops_in_flight(f, true)) {
       ss << "op_tracker tracking is not enabled now, so no ops are tracked currently, even those get stuck. \
-       Please enable \"osd_enable_op_tracker\", and the tracker will start to track new ops received afterwards.";
+       Please enable \"mds_enable_op_tracker\", and the tracker will start to track new ops received afterwards.";
     }
   } else if (command == "dump_historic_ops") {
     if (!op_tracker.dump_historic_ops(f)) {
       ss << "op_tracker tracking is not enabled now, so no ops are tracked currently, even those get stuck. \
-         please enable \"osd_enable_op_tracker\", and the tracker will start to track new ops received afterwards.";
+         please enable \"mds_enable_op_tracker\", and the tracker will start to track new ops received afterwards.";
     }
   } else if (command == "dump_historic_ops_by_duration") {
     if (!op_tracker.dump_historic_ops(f, true)) {
       ss << "op_tracker tracking is not enabled now, so no ops are tracked currently, even those get stuck. \
-         please enable \"osd_enable_op_tracker\", and the tracker will start to track new ops received afterwards.";
+         please enable \"mds_enable_op_tracker\", and the tracker will start to track new ops received afterwards.";
     }
   } else if (command == "osdmap barrier") {
     int64_t target_epoch = 0;