From: Brad Hubbard Date: Wed, 19 Jul 2017 23:27:10 +0000 (+1000) Subject: mon: Fix deep_age copy paste error X-Git-Tag: v12.1.2~204^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F16434%2Fhead;p=ceph.git mon: Fix deep_age copy paste error Signed-off-by: Brad Hubbard --- diff --git a/src/mon/PGMap.cc b/src/mon/PGMap.cc index 913e035f7ef..a01a11c4fc7 100644 --- a/src/mon/PGMap.cc +++ b/src/mon/PGMap.cc @@ -3211,7 +3211,7 @@ void PGMap::get_health_checks( } if (!deep_detail.empty()) { ostringstream ss; - ss << deep_detail.size() << " pgs not deep-scrubbed for " << age; + ss << deep_detail.size() << " pgs not deep-scrubbed for " << deep_age; auto& d = checks->add("PG_NOT_DEEP_SCRUBBED", HEALTH_WARN, ss.str()); d.detail.swap(deep_detail); }