]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mon/OSDMonitor: Clean up: delete extra S signature for plural 14174/head
authorShinobu Kinjo <shinobu@redhat.com>
Tue, 28 Mar 2017 03:23:48 +0000 (12:23 +0900)
committerShinobu Kinjo <shinobu@redhat.com>
Mon, 3 Apr 2017 10:28:21 +0000 (19:28 +0900)
Signed-off-by: Shinobu Kinjo <shinobu@redhat.com>
src/mon/OSDMonitor.cc

index 1f6024f7d9081cf2b7b7f6085156192766ac2448..62c1c594231ba984610762774e556745345482b2 100644 (file)
@@ -3178,12 +3178,12 @@ void OSDMonitor::get_health(list<pair<health_status_t,string> >& summary,
       osdmap.count_full_nearfull_osds(&full, &nearfull);
       if (full > 0) {
        ostringstream ss;
-       ss << full << " full osds(s)";
+       ss << full << " full osd(s)";
        summary.push_back(make_pair(HEALTH_ERR, ss.str()));
       }
       if (nearfull > 0) {
        ostringstream ss;
-       ss << nearfull << " nearfull osds(s)";
+       ss << nearfull << " nearfull osd(s)";
        summary.push_back(make_pair(HEALTH_WARN, ss.str()));
       }
     }