From 92870d7aeeca693340f7c5eb6e8764284145e705 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 24 Feb 2011 00:34:37 -0800 Subject: [PATCH] mds: remove "N stopped" from short mdsmap summary It's confusing because it sounds like we're talking about daemons, when we really just mean there are some ranks that created some ondisk state but aren't currently part of the running cluster. Signed-off-by: Sage Weil --- src/mds/MDSMap.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mds/MDSMap.cc b/src/mds/MDSMap.cc index 73230a539835d..0f9d2286f5b88 100644 --- a/src/mds/MDSMap.cc +++ b/src/mds/MDSMap.cc @@ -144,8 +144,8 @@ void MDSMap::print_summary(ostream& out) if (failed.size()) out << ", " << failed.size() << " failed"; - if (stopped.size()) - out << ", " << stopped.size() << " stopped"; + //if (stopped.size()) + //out << ", " << stopped.size() << " stopped"; } enum health_status_t MDSMap:: -- 2.39.5