From a262385270d50abc1f4cb130c65d485a7937c49a Mon Sep 17 00:00:00 2001 From: Brad Hubbard Date: Thu, 20 Jul 2017 09:27:10 +1000 Subject: [PATCH] mon: Fix deep_age copy paste error Signed-off-by: Brad Hubbard --- src/mon/PGMap.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.47.3