From 4d75a04608365e0d95b5c3d3e5137edd8496009f Mon Sep 17 00:00:00 2001 From: Saumay Agrawal Date: Fri, 3 Mar 2017 00:39:26 +0530 Subject: [PATCH] Update OSDMon.cc I have fixed the issue cleanup #19090: Wrong hard-coded URLs I have replaced the wrong URLs with correct URLs redirecting to the Tunables headline under Crush Map documentation. Please add it to the documentation. --- src/mon/OSDMonitor.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mon/OSDMonitor.cc b/src/mon/OSDMonitor.cc index dd21dfca6d7..52c3cf49953 100644 --- a/src/mon/OSDMonitor.cc +++ b/src/mon/OSDMonitor.cc @@ -3043,7 +3043,7 @@ void OSDMonitor::get_health(list >& summary, << ", min is " << g_conf->mon_crush_min_required_version << ")"; summary.push_back(make_pair(HEALTH_WARN, ss.str())); if (detail) { - ss << "; see http://ceph.com/docs/master/rados/operations/crush-map/#tunables"; + ss << "; see http://docs.ceph.com/docs/master/rados/operations/crush-map/#tunables"; detail->push_back(make_pair(HEALTH_WARN, ss.str())); } } @@ -3054,7 +3054,7 @@ void OSDMonitor::get_health(list >& summary, ss << "crush map has straw_calc_version=0"; summary.push_back(make_pair(HEALTH_WARN, ss.str())); if (detail) { - ss << "; see http://ceph.com/docs/master/rados/operations/crush-map/#tunables"; + ss << "; see http://docs.ceph.com/docs/master/rados/operations/crush-map/#tunables"; detail->push_back(make_pair(HEALTH_WARN, ss.str())); } }