]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
osdmap: don't include blacklist info in summary
authorSage Weil <sage@newdream.net>
Wed, 17 Nov 2010 18:24:21 +0000 (10:24 -0800)
committerSage Weil <sage@newdream.net>
Wed, 17 Nov 2010 18:24:21 +0000 (10:24 -0800)
It's confusing users and isn't that important.

Signed-off-by: Sage Weil <sage@newdream.net>
src/osd/OSDMap.cc

index 7fce956de462886b1212b569d4dbf5963fe8d7e3..d014b42e9fd15d042e88ec1b1dc9ba6728b07da6 100644 (file)
@@ -91,8 +91,6 @@ void OSDMap::print_summary(ostream& out) const
       << get_num_osds() << " osds: "
       << get_num_up_osds() << " up, " 
       << get_num_in_osds() << " in";
-  if (blacklist.size())
-    out << " -- " << blacklist.size() << " blacklisted MDSes";
 }